home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / cenvi23.zip / KEYCODE.CMM < prev    next >
Text File  |  1996-01-24  |  375b  |  11 lines

  1. //****************************************************
  2. //*** KeyCode - Print values of characters pressed ***
  3. //*** ver.1                                        ***
  4. //****************************************************
  5.  
  6. printf("Press Key to see keyboard value; Press ESCAPE to exit\n");
  7. do {
  8.    key = getch();
  9.    printf("key=%04X\n",key)
  10. } while( key != '\033' );
  11.