home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / dos / grafik / fgl105 / 12-01.c < prev    next >
Encoding:
C/C++ Source or Header  |  1991-05-05  |  201 b   |  13 lines

  1. #define ESC 27
  2.  
  3. main()
  4. {
  5.    unsigned char key, aux;
  6.  
  7.    fg_getkey(&key,&aux);
  8.    while (key != ESC) {
  9.       printf("key = %3d  aux = %3d\n",key,aux);
  10.       fg_getkey(&key,&aux);
  11.       }
  12. }
  13.