StartWdt

Outline

WDT is started or restarted.

Supplement

It will be error when WDT is time out.
If so, clear the time out in ClearWdtTimeout.

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


VC++ .NET

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

Top of Page

VC# .NET

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

Top of Page

VB .NET

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

Top of Page