home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 1995 September / PCPRO2_995.ISO / virtek / dos / libex / libex117.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-07-16  |  480 b   |  16 lines

  1.                      // Example: 117 from Library Reference
  2. #include "..\3D-Ware\dddware.h"
  3. #include  <stdio.h>
  4. short  main(void)
  5. {
  6.   dddInitKeybd();    // Initialise the 3D-Ware keyboard functions.
  7.   while  (dddkeycode != _ESC)
  8.   {
  9.                      // Read and print the keycode.
  10.     printf("The value of the key is %d\tEsc to quit.\n",dddkeycode);
  11.   }
  12.   dddRestoreKeybd(); // Restore the dos keyboard reading
  13.                      // facilities.
  14.   return 0;
  15. }
  16.