home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1993 #2 / Image.iso / wp / be310a.zip / HEXKEY.CHS < prev    next >
Text File  |  1993-08-01  |  415b  |  14 lines

  1. /* CHESS FUNCTION(S): HEXKEY.CHS -- standalone program
  2. /*              DATE: 3/1/93
  3. /*            AUTHOR: C. Schanck
  4. /*
  5. /*       DESCRIPTION: it displays the hex and decimal value of a keystroke.  
  6. {     
  7.    int i;
  8.    msg("Press any key ... (Escape exits)");
  9.    i=getkey();
  10.    while((i%256)!=27){
  11.       msg("Value is %04lx [%06ld] ... Press another key ... (Escape exits)",i,i)
  12.       i=getkey();
  13.    }
  14. }