SetWdtResetMask

Outline

H/W reset setting is entered for WDT time out.

Supplement

None

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


VC++ .NET

SetWdtResetMask
Calling Method BOOL SetWdtResetMask(int iMask);
Return Value
TRUE : Normal
FALSE : Error
Argument int iMask
MASK_ON : Mask Enable
MASK_OFF : Mask Disable
Example int ret;
ret = SetWdtResetMask(MASK_ON);
Necessary Condition
Header : iocif.h/iocifconst.h
Library : ioctl.lib

Top of Page

VC# .NET

SetWdtResetMask
Calling Method [DllImport("Ioctl.dll")] static extern int SetWdtResetMask(int iMask);
Return Value
Excluding 0 : Normal
0 : Error
Argument int iMask
MASK_ON : Mask Enable
MASK_OFF : Mask Disable
Example int ret;
ret = SetWdtResetMask(MASK_ON);

Top of Page

VB .NET

SetWdtResetMask
Calling Method Declare Function SetWdtResetMask Lib "Ioctl.dll"(ByVal iMask As Integer)As Integer
Return Value
Excluding 0 : Normal
0 : Error
Argument ByVal iMask As Integer
MASK_ON : Mask Enable
MASK_OFF : Mask Disable
Example Dim ret As Integer
ret = SetWdtResetMask(MASK_ON)

Top of Page