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