home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 2 BBS / 02-BBS.zip / BTMTSRC3.ZIP / GET_KEY.C < prev    next >
Text File  |  1989-10-14  |  253b  |  13 lines

  1. #include <stdio.h>
  2. #include <conio.h>
  3.  
  4. /* get_key() - P. Fitzsimmons */
  5.  
  6. int get_key(void)
  7. {
  8.     int c = getch();
  9.     if(!c || c==0xE0)   /* OS/2 returns 0xE0 if one of the grey edit keys are hit */
  10.         c = getch()<<8;
  11.     return(c);
  12. }
  13.