|
|
1.1 root 1: /*
2: * Copyright (c) 1999 Apple Computer, Inc. All rights reserved.
3: *
4: * @APPLE_LICENSE_HEADER_START@
5: *
6: * Portions Copyright (c) 1999 Apple Computer, Inc. All Rights
7: * Reserved. This file contains Original Code and/or Modifications of
8: * Original Code as defined in and that are subject to the Apple Public
9: * Source License Version 1.1 (the "License"). You may not use this file
10: * except in compliance with the License. Please obtain a copy of the
11: * License at http://www.apple.com/publicsource and read it before using
12: * this file.
13: *
14: * The Original Code and all software distributed under the License are
15: * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
16: * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
17: * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
18: * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the
19: * License for the specific language governing rights and limitations
20: * under the License.
21: *
22: * @APPLE_LICENSE_HEADER_END@
23: */
24:
25: /******************************************************************************
26: event.h (PostScript side version)
27:
28: CONFIDENTIAL
29: Copyright (c) 1992 NeXT Computer, Inc. as an unpublished work.
30: All Rights Reserved.
31:
32: Created jpasqua 22 Sept 1992
33:
34: Modified:
35: ******************************************************************************/
36:
37: #ifndef _PPC_DEV_EVENT_
38: #define _PPC_DEV_EVENT_
39:
40: #import <bsd/dev/event.h> /* Portable event defs */
41: /*
42: * Device-dependent bits within event.flags
43: * (The bits probably won't change, but may not be supported by all hardware)
44: *
45: * Bletch! This stuff is also defined in dpsclient/event.h!
46: * That's totally inappropriate for such machine dependent
47: * stuff. I guarantee we can't support this for all possible
48: * keyboards. (Hint: What do NX_NEXTLCMDKEYMASK and
49: * NX_NEXTRCMDKEYMASK mean on the keyboards with a single
50: * Command bar?)
51: */
52:
53: #ifndef NX_NEXTCTLKEYMASK
54: #define NX_NEXTCTLKEYMASK 0x00000001
55: #endif
56:
57: #ifndef NX_NEXTLSHIFTKEYMASK
58: #define NX_NEXTLSHIFTKEYMASK 0x00000002
59: #endif
60:
61: #ifndef NX_NEXTRSHIFTKEYMASK
62: #define NX_NEXTRSHIFTKEYMASK 0x00000004
63: #endif
64:
65: #ifndef NX_NEXTLCMDKEYMASK
66: #define NX_NEXTLCMDKEYMASK 0x00000008
67: #endif
68:
69: #ifndef NX_NEXTRCMDKEYMASK
70: #define NX_NEXTRCMDKEYMASK 0x00000010
71: #endif
72:
73: #ifndef NX_NEXTLALTKEYMASK
74: #define NX_NEXTLALTKEYMASK 0x00000020
75: #endif
76:
77: #ifndef NX_NEXTRALTKEYMASK
78: #define NX_NEXTRALTKEYMASK 0x00000040
79: #endif
80:
81: /* NX_STYLUSPROXIMITYMASK 0x00000080 RESERVED */
82: /* NX_NONCOALSESCEDMASK 0x00000100 RESERVED */
83:
84:
85: #endif /* _PPC_DEV_EVENT_ */
86:
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.