GetLightBlow

Outline

Backlight burnout status is acquired.

Supplement

None

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


VC++ .NET

GetLightBlow
Calling Method BOOL GetLightBlow(int *iStatus);
Return Value
TRUE : Normal
FALSE : Error
Argument int *iStatus
BACKLIGHT_OK : Backlight not burnout
BACKLIGHT_BLOWOUT : Burnout
Example int ret, iStatus;
ret = GetLightBlow(&iStatus);
Necessary Condition
Header : iocif.h/iocifconst.h
Library : ioctl.lib

Top of Page

VC# .NET

GetLightBlow
Calling Method [DllImport("Ioctl.dll")] static extern int GetLightBlow(ref int iStatus);
Return Value
Excluding 0 : Normal
0 : Error
Argument ref int iStatus
BACKLIGHT_OK : Backlight not burnout
BACKLIGHT_BLOWOUT : Burnout
Example int ret, iStatus;
ret = GetLightBlow(ref iStatus);

Top of Page

VB .NET

GetLightBlow
Calling Method Declare Function GetLightBlow Lib "Ioctl.dll"(ByVal iStatus As Integer)As Integer
Return Value
Excluding 0 : Normal
0 : Error
Argument ByVal iStatus As Integer
BACKLIGHT_OK : Backlight not burnout
BACKLIGHT_BLOWOUT : Burnout
Example Dim ret As Integer
Dim iStatus As Integer
ret = GetLightBlow (iStatus)

Top of Page