home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c005 / 1.ddi / BKEYBD.H < prev    next >
Encoding:
C/C++ Source or Header  |  1986-08-05  |  2.0 KB  |  56 lines

  1. /**
  2. *
  3. *  BKEYBD.H    Header file for BIOS keyboard functions for C TOOLS PLUS
  4. *
  5. *  Version 3.0     (C)Copyright Blaise Computing Inc.  1986
  6. *
  7. **/
  8.  
  9. #ifndef DEF_BKEYBD              /* Prevent redefinition.          */
  10.  
  11.     /* Symbols for KBSTUFF and KBPLACE                      */
  12.  
  13. #define KB_HEAD     1
  14. #define KB_TAIL     0
  15.  
  16. struct kstatus                  /* Keyboard status structure    */
  17. {
  18.    unsigned right_shift  : 1;          /* Right Shift key depressed    */
  19.    unsigned left_shift     : 1;          /* Left  Shift key depressed    */
  20.    unsigned ctrl_shift     : 1;          /* Ctrl         key depressed    */
  21.    unsigned alt_shift     : 1;          /* Alt         key depressed    */
  22.    unsigned scroll_state : 1;          /* Scroll Lock has been toggled */
  23.    unsigned num_state     : 1;          /* Num Lock has been toggled    */
  24.    unsigned caps_state     : 1;          /* Caps Lock has been toggled   */
  25.    unsigned ins_state     : 1;          /* Insert state is active       */
  26.                       /*                  */
  27.    unsigned filler     : 8;          /* Filler for word alignment    */
  28. };
  29. #define KEYSTATUS   struct kstatus
  30.  
  31.     /* Function declarations                          */
  32.  
  33. int kbready(char *,int *);          /* Check for a keystroke (do    */
  34.                       /* not wait).              */
  35.                       /*                  */
  36. int kbin(int *);              /* Await keystroke.          */
  37.                       /*                  */
  38. int kbflush(void);              /* Flush keyboard buffer.       */
  39.                       /*                  */
  40. int kbshift(KEYSTATUS *);          /* Return the keyboard shift    */
  41.                       /* status.              */
  42. int kbqueue(int *);              /* Total and remaining space    */
  43.                       /* in keyboard queue.          */
  44.                       /*                  */
  45. char *kbstuff(int,char *);          /* Stuff string into keyboard   */
  46.                       /* queue.               */
  47.                       /*                  */
  48. int kbplace(int,char,char);          /* Place one keystroke into     */
  49.                       /* keyboard queue.          */
  50.  
  51.  
  52. #define DEF_BKEYBD  1              /* Prevent second reading of    */
  53.                       /* these definitions.          */
  54.  
  55. #endif                      /* Ends "#ifndef DEF_BKEYBD"    */
  56.