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