Function Reference 4-99
v i d B a c k L i g h t O n
Description
Turns the LCD backlight on or off.
Syntax
void far vidBackLightOn(short sOn);
Parameters
sOn
The state to change the backlight to. Values are
1
(for On)
and
0
(for Off).
Return Values
None
Example
#include <conio.h>
#include <stdio.h>
#include "mmsultra.h"
void main(void)
{
int cInput = 32;
// User input
printf("Turn backlight on?\n(Y/N): ");
// Prompt user
cInput = _getch();
// Get input
switch (cInput)
// Take action
{
case 'N': vidBackLightOn(0);
break;
case 'Y': vidBackLightOn(1);
break;
default: printf("Invalid input");
}
}
Summary of Contents for Gold 6037EX
Page 1: ... ROG TC6037EXPM Rev AA 8 03 Printed in the U S A 2003 Paxar Americas Inc All rights reserved ...
Page 2: ... Trademarks 0 1 2 0 0 3 4 5 6 7 78 ...
Page 10: ...viii Table of Contents ...
Page 30: ...2 16 Programmer s Manual ...
Page 36: ...3 6 Programmer s Manual ...
Page 154: ...4 118 Programmer s Manual ...
Page 228: ...14 Index ...
Page 229: ......
Page 230: ......