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