home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.2 (Developer) / NS_dev_3.2.iso / NextDeveloper / Headers / bsd / dev / i386 / event.h next >
Text File  |  1993-10-19  |  2KB  |  63 lines

  1. /******************************************************************************
  2.     event.h (PostScript side version)
  3.     
  4.     CONFIDENTIAL
  5.     Copyright (c) 1992 NeXT Computer, Inc. as an unpublished work.
  6.     All Rights Reserved.
  7.  
  8.     Created jpasqua 22 Sept 1992
  9.  
  10.     Modified:
  11. ******************************************************************************/
  12.  
  13. #ifndef _I386_DEV_EVENT_
  14. #define _I386_DEV_EVENT_
  15.  
  16. #import <bsd/dev/event.h>    /* Portable event defs */
  17. /*
  18.  * Device-dependent bits within event.flags
  19.  * (The bits probably won't change, but may not be supported by all hardware)
  20.  *
  21.  * Bletch!  This stuff is also defined in dpsclient/event.h!
  22.  * That's totally inappropriate for such machine dependent
  23.  * stuff.  I guarantee we can't support this for all possible
  24.  * keyboards. (Hint: What do NX_NEXTLCMDKEYMASK and
  25.  * NX_NEXTRCMDKEYMASK mean on the keyboards with a single
  26.  * Command bar?)
  27.  */
  28.  
  29. #ifndef NX_NEXTCTLKEYMASK
  30. #define    NX_NEXTCTLKEYMASK    0x00000001
  31. #endif
  32.  
  33. #ifndef NX_NEXTLSHIFTKEYMASK
  34. #define    NX_NEXTLSHIFTKEYMASK    0x00000002
  35. #endif
  36.  
  37. #ifndef NX_NEXTRSHIFTKEYMASK
  38. #define    NX_NEXTRSHIFTKEYMASK    0x00000004
  39. #endif
  40.  
  41. #ifndef NX_NEXTLCMDKEYMASK
  42. #define    NX_NEXTLCMDKEYMASK    0x00000008
  43. #endif
  44.  
  45. #ifndef NX_NEXTRCMDKEYMASK
  46. #define    NX_NEXTRCMDKEYMASK    0x00000010
  47. #endif
  48.  
  49. #ifndef NX_NEXTLALTKEYMASK
  50. #define    NX_NEXTLALTKEYMASK    0x00000020
  51. #endif
  52.  
  53. #ifndef NX_NEXTRALTKEYMASK
  54. #define    NX_NEXTRALTKEYMASK    0x00000040
  55. #endif
  56.  
  57. /* NX_STYLUSPROXIMITYMASK    0x00000080    RESERVED */
  58. /* NX_NONCOALSESCEDMASK        0x00000100    RESERVED */
  59.  
  60.  
  61. #endif _I386_DEV_EVENT_
  62.  
  63.