home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #1 / monster.zip / monster / PROG_C / CENVIW9.ZIP / NUMLOCK.CMM < prev    next >
Text File  |  1994-03-08  |  316b  |  12 lines

  1. //************************************************
  2. //*** NumLock.cmm - Turn on the NUMLOCK key if ***
  3. //*** ver.1         it's not already on        ***
  4. //************************************************
  5.  
  6. #include <KeyPush.lib>
  7.  
  8. Keys = GetKeyboardState();
  9. Keys[VK_NUMLOCK] |= 1;
  10. SetKeyboardState(Keys);
  11.  
  12.