home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / GRAPHICS / MISC / FGL110C.ZIP / 12-03.C < prev    next >
Encoding:
C/C++ Source or Header  |  1992-01-31  |  404 b   |  23 lines

  1. #include <fastgraf.h>
  2. #include <stdio.h>
  3.  
  4. void main(void);
  5.  
  6. void main()
  7. {
  8.    if (fg_capslock())
  9.       printf("CapsLock is on.\n");
  10.    else
  11.       printf("CapsLock is off.\n");
  12.  
  13.    if (fg_numlock())
  14.       printf("NumLock is on.\n");
  15.    else
  16.       printf("NumLock is off.\n");
  17.  
  18.    if (fg_scrlock())
  19.       printf("ScrollLock is on.\n");
  20.    else
  21.       printf("ScrollLock is off.\n");
  22. }
  23.