home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c185 / 2.ddi / OWLSRC.EXE / CSCAPE / SOURCE / SCANCODE.H < prev    next >
Encoding:
C/C++ Source or Header  |  1989-09-06  |  897 b   |  49 lines

  1. /*
  2.     scancode.h
  3.  
  4.     % Keyboard scan codes
  5.  
  6.     OWL 1.1
  7.     Copyright (c) 1986, 1987, by Oakland Group, Inc.
  8.     ALL RIGHTS RESERVED.
  9.  
  10.     Revision History:
  11.     -----------------
  12.     12/20/88 ted    Extracted pcscan.h so we can conditionally
  13.                     include different scancodes for different versions.
  14.      7/18/89 jmd    chnages vmsscan.h to smgscan.h
  15. */
  16.  
  17. #ifdef OAK_DOS
  18. #    include "pcscan.h"
  19. #endif
  20.  
  21. #ifdef OAK_OS2
  22. #    include "pcscan.h"
  23. #endif
  24.  
  25. #ifdef OAK_UNIX        /*          UNIX Dependent Code */
  26. #    include "cursscan.h"
  27. #endif
  28.  
  29. #ifdef OAK_APOLLO
  30. #    include "gprscan.h"
  31. #endif
  32.  
  33. #ifdef OAK_SUN        /*          SUN Dependent Code */
  34. #    include "sunscan.h"
  35. #endif
  36.  
  37. #ifdef OAK_VMS        /*          VMS Dependent Code */
  38. #    include "smgscan.h"
  39. #endif
  40.  
  41. #ifdef OAK_STRATUS        /*          STRATUS Dependent Code */
  42. #    include "strtscan.h"
  43. #endif
  44.  
  45. #ifdef OAK_DG    /*          Data General C Dependent Code    */
  46. #    include "dgscan.h"
  47. #endif
  48.  
  49.