1 herrb 1.1 /*
2 quartz.h
3
4 Quartz-specific functions and definitions
5 */
6
7 #ifndef _QUARTZ_H
8 #define _QUARTZ_H
9
10 #include "X11/Xproto.h"
11 #include "screenint.h"
12
13 // NX_APPDEFINED event subtypes for special commands
14 enum {
15 kXServerClearModifiers,
16 kXServerShow,
17 kXServerHide,
18 kXServerQuit
19 };
20
21 Bool QuartzAddScreen(ScreenPtr screen);
22 herrb 1.1 void QuartzStoreColors(ColormapPtr pmap, int numEntries, xColorItem *pdefs);
23 Bool QuartzInitCursor(ScreenPtr pScreen);
24 void QuartzOsVendorInit(void);
25 void QuartzGiveUp(void);
26 void QuartzHide(void);
27 void QuartzShow(void);
28
29 #endif
|