| GetEnableFan | |||||||||||
| Calling Method | BOOL GetEnableFan(int iSelect, int *piEnable); | ||||||||||
| Return Value |
|
||||||||||
| Argument | int iSelect |
|
|||||||||
| int *piEnable | Valid or invalid of fan monitoring | ||||||||||
| Example | int iEnable; BOOL ret = GetEnableFan(MONITOR_FAN3, iEnable); |
||||||||||
| Necessary Condition |
|
||||||||||
| GetEnableFan | |||||||||||
| Calling Method | [DllImport("Ioctl.dll")] static extern int GetEnableFan (int iSelect, ref int piEnable); | ||||||||||
| Return Value |
|
||||||||||
| Argument | int iSelect |
|
|||||||||
| ref int piEnable | Valid or invalid of fan monitoring | ||||||||||
| Example | int iRetrun; int iEnable; iReturn = GetEnableFan(MONITOR_FAN3, ref iEnable); |
||||||||||
| GetEnableFan | |||||||||||
| Calling Method | Declare Function GetEnableFan Lib "Ioctl.dll"(ByVal iSelect As Integer, ByRef iEnable As Integer)As Integer | ||||||||||
| Return Value |
|
||||||||||
| Argument | ByVal iSelect As Integer |
|
|||||||||
| ByRef iEnable As Integer | Valid or invalid of fan monitoring | ||||||||||
| Example | Dim ret As Integer Dim iEnable As Integer ret = GetEnableFan(MONITOR_FAN3, iEnable) |
||||||||||