| GetCurrentFan | ||||||||
| Calling Method | BOOL GetCurrentFan(int iSelect, int *iFan); | |||||||
| Return Value |
|
|||||||
| Argument | int iSelect |
|
||||||
| int *iFan | Fan speed | |||||||
| Example | int ret, iFan; ret = GetCurrentFan(MONITOR_FAN2, &iFan); |
|||||||
| Necessary Condition |
|
|||||||
| GetCurrentFan | ||||||||
| Calling Method | [DllImport("Ioctl.dll")] static extern int GetCurrentFan(int iSelect, ref int iFan); | |||||||
| Return Value |
|
|||||||
| Argument | int iSelect |
|
||||||
| ref int iFan | Fan speed | |||||||
| Example | int ret, iFan; ret = GetCurrentFan(MONITOR_FAN2, ref iFan); |
|||||||
| GetCurrentFan | ||||||||
| Calling Method | Declare Function GetCurrentFan Lib "Ioctl.dll"(ByVal iSelect As Integer, ByRef iFan As Integer)As Integer | |||||||
| Return Value |
|
|||||||
| Argument | ByVal iSelect As Integer |
|
||||||
| ByRef iFan As Integer | Fan speed | |||||||
| Example | Dim ret As Integer Dim iFan As Integer ret = GetCurrentFan(MONITOR_FAN2, iFan) |
|||||||