StopWdt

Outline

Stop WDT.

Supplement

None

VC++ .NET VC# .NET VB .NET


VC++ .NET

StopWdt
Calling Method BOOL StopWdt();
Return Value
TRUE : Normal
FALSE : Error
Argument None
Example int ret;
ret = StopWdt();
Necessary Condition
Header : iocif.h/iocifconst.h
Library : ioctl.lib

Top of Page

VC# .NET

StopWdt
Calling Method [DllImport("Ioctl.dll")] static extern int StopWdt();
Return Value
Excluding 0 : Normal
0 : Error
Argument None
Example int ret;
ret = StopWdt();

Top of Page

VB .NET

StopWdt
Calling Method Declare Function StopWdt Lib "Ioctl.dll"()As Integer
Return Value
Excluding 0 : Normal
0 : Error
Argument None
Example Dim ret As Integer
ret = StopWdt()

Top of Page