home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Programmer's Library 1.3 / Microsoft-Programers-Library-v1.3.iso / sampcode / prof_c / 05oslib / bios / kbd_stat.c < prev    next >
Encoding:
C/C++ Source or Header  |  1988-08-11  |  334 b   |  20 lines

  1. /*
  2.  *    kbd_stat -- return the keyboard status
  3.  *    word (bit-significant)
  4.  */
  5.  
  6. #include <dos.h>
  7. #include <local\bioslib.h>
  8. #include <local\keybdlib.h>
  9.  
  10. unsigned char
  11. kbd_stat()
  12. {
  13.     union REGS inregs, outregs;
  14.  
  15.     inregs.h.ah = KBD_STATUS;
  16.     int86(KEYBD_IO, &inregs, &outregs);
  17.  
  18.     return ((unsigned char)(outregs.h.al));
  19. }
  20.