X.h
上传用户:lctgjx
上传日期:2022-06-04
资源大小:8887k
文件大小:20k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2.  * $Xorg: X.h,v 1.4 2001/02/09 02:03:22 xorgcvs Exp $
  3.  */
  4. /* Definitions for the X window system likely to be used by applications */
  5. #ifndef X_H
  6. #define X_H
  7. /***********************************************************
  8. Copyright 1987, 1998  The Open Group
  9. Permission to use, copy, modify, distribute, and sell this software and its
  10. documentation for any purpose is hereby granted without fee, provided that
  11. the above copyright notice appear in all copies and that both that
  12. copyright notice and this permission notice appear in supporting
  13. documentation.
  14. The above copyright notice and this permission notice shall be included in
  15. all copies or substantial portions of the Software.
  16. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  17. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  18. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
  19. OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
  20. AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  21. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  22. Except as contained in this notice, the name of The Open Group shall not be
  23. used in advertising or otherwise to promote the sale, use or other dealings
  24. in this Software without prior written authorization from The Open Group.
  25. Copyright 1987 by Digital Equipment Corporation, Maynard, Massachusetts.
  26.                         All Rights Reserved
  27. Permission to use, copy, modify, and distribute this software and its 
  28. documentation for any purpose and without fee is hereby granted, 
  29. provided that the above copyright notice appear in all copies and that
  30. both that copyright notice and this permission notice appear in 
  31. supporting documentation, and that the name of Digital not be
  32. used in advertising or publicity pertaining to distribution of the
  33. software without specific, written prior permission.  
  34. DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  35. ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
  36. DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
  37. ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  38. WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  39. ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  40. SOFTWARE.
  41. ******************************************************************/
  42. /* $XFree86: xc/include/X.h,v 1.6 2003/07/09 15:27:28 tsi Exp $ */
  43. #define X_PROTOCOL 11 /* current protocol version */
  44. #define X_PROTOCOL_REVISION 0 /* current minor version */
  45. /* Resources */
  46. /*
  47.  * _XSERVER64 must ONLY be defined when compiling X server sources on
  48.  * systems where unsigned long is not 32 bits, must NOT be used in
  49.  * client or library code.
  50.  */
  51. #ifndef _XSERVER64
  52. #  ifndef _XTYPEDEF_XID
  53. #    define _XTYPEDEF_XID
  54. typedef unsigned long XID;
  55. #  endif
  56. #  ifndef _XTYPEDEF_MASK
  57. #    define _XTYPEDEF_MASK
  58. typedef unsigned long Mask;
  59. #  endif
  60. #  ifndef _XTYPEDEF_ATOM
  61. #    define _XTYPEDEF_ATOM
  62. typedef unsigned long Atom; /* Also in Xdefs.h */
  63. #  endif
  64. typedef unsigned long VisualID;
  65. typedef unsigned long Time;
  66. #else
  67. #  include <X11/Xmd.h>
  68. #  ifndef _XTYPEDEF_XID
  69. #    define _XTYPEDEF_XID
  70. typedef CARD32 XID;
  71. #  endif
  72. #  ifndef _XTYPEDEF_MASK
  73. #    define _XTYPEDEF_MASK
  74. typedef CARD32 Mask;
  75. #  endif
  76. #  ifndef _XTYPEDEF_ATOM
  77. #    define _XTYPEDEF_ATOM
  78. typedef CARD32 Atom;
  79. #  endif
  80. typedef CARD32 VisualID;
  81. typedef CARD32 Time;
  82. #endif
  83. typedef XID Window;
  84. typedef XID Drawable;
  85. #ifndef _XTYPEDEF_FONT
  86. #  define _XTYPEDEF_FONT
  87. typedef XID Font;
  88. #endif
  89. typedef XID Pixmap;
  90. typedef XID Cursor;
  91. typedef XID Colormap;
  92. typedef XID GContext;
  93. typedef XID KeySym;
  94. typedef unsigned char KeyCode;
  95. /*****************************************************************
  96.  * RESERVED RESOURCE AND CONSTANT DEFINITIONS
  97.  *****************************************************************/
  98. #ifndef None
  99. #define None                 0L /* universal null resource or null atom */
  100. #endif
  101. #define ParentRelative       1L /* background pixmap in CreateWindow
  102.     and ChangeWindowAttributes */
  103. #define CopyFromParent       0L /* border pixmap in CreateWindow
  104.        and ChangeWindowAttributes
  105.    special VisualID and special window
  106.        class passed to CreateWindow */
  107. #define PointerWindow        0L /* destination window in SendEvent */
  108. #define InputFocus           1L /* destination window in SendEvent */
  109. #define PointerRoot          1L /* focus window in SetInputFocus */
  110. #define AnyPropertyType      0L /* special Atom, passed to GetProperty */
  111. #define AnyKey      0L /* special Key Code, passed to GrabKey */
  112. #define AnyButton            0L /* special Button Code, passed to GrabButton */
  113. #define AllTemporary         0L /* special Resource ID passed to KillClient */
  114. #define CurrentTime          0L /* special Time */
  115. #define NoSymbol      0L /* special KeySym */
  116. /***************************************************************** 
  117.  * EVENT DEFINITIONS 
  118.  *****************************************************************/
  119. /* Input Event Masks. Used as event-mask window attribute and as arguments
  120.    to Grab requests.  Not to be confused with event names.  */
  121. #define NoEventMask 0L
  122. #define KeyPressMask (1L<<0)  
  123. #define KeyReleaseMask (1L<<1)  
  124. #define ButtonPressMask (1L<<2)  
  125. #define ButtonReleaseMask (1L<<3)  
  126. #define EnterWindowMask (1L<<4)  
  127. #define LeaveWindowMask (1L<<5)  
  128. #define PointerMotionMask (1L<<6)  
  129. #define PointerMotionHintMask (1L<<7)  
  130. #define Button1MotionMask (1L<<8)  
  131. #define Button2MotionMask (1L<<9)  
  132. #define Button3MotionMask (1L<<10) 
  133. #define Button4MotionMask (1L<<11) 
  134. #define Button5MotionMask (1L<<12) 
  135. #define ButtonMotionMask (1L<<13) 
  136. #define KeymapStateMask (1L<<14)
  137. #define ExposureMask (1L<<15) 
  138. #define VisibilityChangeMask (1L<<16) 
  139. #define StructureNotifyMask (1L<<17) 
  140. #define ResizeRedirectMask (1L<<18) 
  141. #define SubstructureNotifyMask (1L<<19) 
  142. #define SubstructureRedirectMask (1L<<20) 
  143. #define FocusChangeMask (1L<<21) 
  144. #define PropertyChangeMask (1L<<22) 
  145. #define ColormapChangeMask (1L<<23) 
  146. #define OwnerGrabButtonMask (1L<<24) 
  147. /* Event names.  Used in "type" field in XEvent structures.  Not to be
  148. confused with event masks above.  They start from 2 because 0 and 1
  149. are reserved in the protocol for errors and replies. */
  150. #define KeyPress 2
  151. #define KeyRelease 3
  152. #define ButtonPress 4
  153. #define ButtonRelease 5
  154. #define MotionNotify 6
  155. #define EnterNotify 7
  156. #define LeaveNotify 8
  157. #define FocusIn 9
  158. #define FocusOut 10
  159. #define KeymapNotify 11
  160. #define Expose 12
  161. #define GraphicsExpose 13
  162. #define NoExpose 14
  163. #define VisibilityNotify 15
  164. #define CreateNotify 16
  165. #define DestroyNotify 17
  166. #define UnmapNotify 18
  167. #define MapNotify 19
  168. #define MapRequest 20
  169. #define ReparentNotify 21
  170. #define ConfigureNotify 22
  171. #define ConfigureRequest 23
  172. #define GravityNotify 24
  173. #define ResizeRequest 25
  174. #define CirculateNotify 26
  175. #define CirculateRequest 27
  176. #define PropertyNotify 28
  177. #define SelectionClear 29
  178. #define SelectionRequest 30
  179. #define SelectionNotify 31
  180. #define ColormapNotify 32
  181. #define ClientMessage 33
  182. #define MappingNotify 34
  183. #define GenericEvent 35
  184. #define LASTEvent 36 /* must be bigger than any event # */
  185. /* Key masks. Used as modifiers to GrabButton and GrabKey, results of QueryPointer,
  186.    state in various key-, mouse-, and button-related events. */
  187. #define ShiftMask (1<<0)
  188. #define LockMask (1<<1)
  189. #define ControlMask (1<<2)
  190. #define Mod1Mask (1<<3)
  191. #define Mod2Mask (1<<4)
  192. #define Mod3Mask (1<<5)
  193. #define Mod4Mask (1<<6)
  194. #define Mod5Mask (1<<7)
  195. /* modifier names.  Used to build a SetModifierMapping request or
  196.    to read a GetModifierMapping request.  These correspond to the
  197.    masks defined above. */
  198. #define ShiftMapIndex 0
  199. #define LockMapIndex 1
  200. #define ControlMapIndex 2
  201. #define Mod1MapIndex 3
  202. #define Mod2MapIndex 4
  203. #define Mod3MapIndex 5
  204. #define Mod4MapIndex 6
  205. #define Mod5MapIndex 7
  206. /* button masks.  Used in same manner as Key masks above. Not to be confused
  207.    with button names below. */
  208. #define Button1Mask (1<<8)
  209. #define Button2Mask (1<<9)
  210. #define Button3Mask (1<<10)
  211. #define Button4Mask (1<<11)
  212. #define Button5Mask (1<<12)
  213. #define AnyModifier (1<<15)  /* used in GrabButton, GrabKey */
  214. /* button names. Used as arguments to GrabButton and as detail in ButtonPress
  215.    and ButtonRelease events.  Not to be confused with button masks above.
  216.    Note that 0 is already defined above as "AnyButton".  */
  217. #define Button1 1
  218. #define Button2 2
  219. #define Button3 3
  220. #define Button4 4
  221. #define Button5 5
  222. /* Notify modes */
  223. #define NotifyNormal 0
  224. #define NotifyGrab 1
  225. #define NotifyUngrab 2
  226. #define NotifyWhileGrabbed 3
  227. #define NotifyHint 1 /* for MotionNotify events */
  228.        
  229. /* Notify detail */
  230. #define NotifyAncestor 0
  231. #define NotifyVirtual 1
  232. #define NotifyInferior 2
  233. #define NotifyNonlinear 3
  234. #define NotifyNonlinearVirtual 4
  235. #define NotifyPointer 5
  236. #define NotifyPointerRoot 6
  237. #define NotifyDetailNone 7
  238. /* Visibility notify */
  239. #define VisibilityUnobscured 0
  240. #define VisibilityPartiallyObscured 1
  241. #define VisibilityFullyObscured 2
  242. /* Circulation request */
  243. #define PlaceOnTop 0
  244. #define PlaceOnBottom 1
  245. /* protocol families */
  246. #define FamilyInternet 0 /* IPv4 */
  247. #define FamilyDECnet 1
  248. #define FamilyChaos 2
  249. #define FamilyInternet6 6 /* IPv6 */
  250. /* authentication families not tied to a specific protocol */
  251. #define FamilyServerInterpreted 5
  252. /* Property notification */
  253. #define PropertyNewValue 0
  254. #define PropertyDelete 1
  255. /* Color Map notification */
  256. #define ColormapUninstalled 0
  257. #define ColormapInstalled 1
  258. /* GrabPointer, GrabButton, GrabKeyboard, GrabKey Modes */
  259. #define GrabModeSync 0
  260. #define GrabModeAsync 1
  261. /* GrabPointer, GrabKeyboard reply status */
  262. #define GrabSuccess 0
  263. #define AlreadyGrabbed 1
  264. #define GrabInvalidTime 2
  265. #define GrabNotViewable 3
  266. #define GrabFrozen 4
  267. /* AllowEvents modes */
  268. #define AsyncPointer 0
  269. #define SyncPointer 1
  270. #define ReplayPointer 2
  271. #define AsyncKeyboard 3
  272. #define SyncKeyboard 4
  273. #define ReplayKeyboard 5
  274. #define AsyncBoth 6
  275. #define SyncBoth 7
  276. /* Used in SetInputFocus, GetInputFocus */
  277. #define RevertToNone (int)None
  278. #define RevertToPointerRoot (int)PointerRoot
  279. #define RevertToParent 2
  280. /*****************************************************************
  281.  * ERROR CODES 
  282.  *****************************************************************/
  283. #define Success    0 /* everything's okay */
  284. #define BadRequest    1 /* bad request code */
  285. #define BadValue    2 /* int parameter out of range */
  286. #define BadWindow    3 /* parameter not a Window */
  287. #define BadPixmap    4 /* parameter not a Pixmap */
  288. #define BadAtom    5 /* parameter not an Atom */
  289. #define BadCursor    6 /* parameter not a Cursor */
  290. #define BadFont    7 /* parameter not a Font */
  291. #define BadMatch    8 /* parameter mismatch */
  292. #define BadDrawable    9 /* parameter not a Pixmap or Window */
  293. #define BadAccess   10 /* depending on context:
  294.  - key/button already grabbed
  295.  - attempt to free an illegal 
  296.    cmap entry 
  297. - attempt to store into a read-only 
  298.    color map entry.
  299.   - attempt to modify the access control
  300.    list from other than the local host.
  301. */
  302. #define BadAlloc   11 /* insufficient resources */
  303. #define BadColor   12 /* no such colormap */
  304. #define BadGC   13 /* parameter not a GC */
  305. #define BadIDChoice   14 /* choice not in range or already used */
  306. #define BadName   15 /* font or color name doesn't exist */
  307. #define BadLength   16 /* Request length incorrect */
  308. #define BadImplementation 17 /* server is defective */
  309. #define FirstExtensionError 128
  310. #define LastExtensionError 255
  311. /*****************************************************************
  312.  * WINDOW DEFINITIONS 
  313.  *****************************************************************/
  314. /* Window classes used by CreateWindow */
  315. /* Note that CopyFromParent is already defined as 0 above */
  316. #define InputOutput 1
  317. #define InputOnly 2
  318. /* Window attributes for CreateWindow and ChangeWindowAttributes */
  319. #define CWBackPixmap (1L<<0)
  320. #define CWBackPixel (1L<<1)
  321. #define CWBorderPixmap (1L<<2)
  322. #define CWBorderPixel           (1L<<3)
  323. #define CWBitGravity (1L<<4)
  324. #define CWWinGravity (1L<<5)
  325. #define CWBackingStore          (1L<<6)
  326. #define CWBackingPlanes         (1L<<7)
  327. #define CWBackingPixel         (1L<<8)
  328. #define CWOverrideRedirect (1L<<9)
  329. #define CWSaveUnder (1L<<10)
  330. #define CWEventMask (1L<<11)
  331. #define CWDontPropagate         (1L<<12)
  332. #define CWColormap (1L<<13)
  333. #define CWCursor         (1L<<14)
  334. /* ConfigureWindow structure */
  335. #define CWX (1<<0)
  336. #define CWY (1<<1)
  337. #define CWWidth (1<<2)
  338. #define CWHeight (1<<3)
  339. #define CWBorderWidth (1<<4)
  340. #define CWSibling (1<<5)
  341. #define CWStackMode (1<<6)
  342. /* Bit Gravity */
  343. #define ForgetGravity 0
  344. #define NorthWestGravity 1
  345. #define NorthGravity 2
  346. #define NorthEastGravity 3
  347. #define WestGravity 4
  348. #define CenterGravity 5
  349. #define EastGravity 6
  350. #define SouthWestGravity 7
  351. #define SouthGravity 8
  352. #define SouthEastGravity 9
  353. #define StaticGravity 10
  354. /* Window gravity + bit gravity above */
  355. #define UnmapGravity 0
  356. /* Used in CreateWindow for backing-store hint */
  357. #define NotUseful               0
  358. #define WhenMapped              1
  359. #define Always                  2
  360. /* Used in GetWindowAttributes reply */
  361. #define IsUnmapped 0
  362. #define IsUnviewable 1
  363. #define IsViewable 2
  364. /* Used in ChangeSaveSet */
  365. #define SetModeInsert           0
  366. #define SetModeDelete           1
  367. /* Used in ChangeCloseDownMode */
  368. #define DestroyAll              0
  369. #define RetainPermanent         1
  370. #define RetainTemporary         2
  371. /* Window stacking method (in configureWindow) */
  372. #define Above                   0
  373. #define Below                   1
  374. #define TopIf                   2
  375. #define BottomIf                3
  376. #define Opposite                4
  377. /* Circulation direction */
  378. #define RaiseLowest             0
  379. #define LowerHighest            1
  380. /* Property modes */
  381. #define PropModeReplace         0
  382. #define PropModePrepend         1
  383. #define PropModeAppend          2
  384. /*****************************************************************
  385.  * GRAPHICS DEFINITIONS
  386.  *****************************************************************/
  387. /* graphics functions, as in GC.alu */
  388. #define GXclear 0x0 /* 0 */
  389. #define GXand 0x1 /* src AND dst */
  390. #define GXandReverse 0x2 /* src AND NOT dst */
  391. #define GXcopy 0x3 /* src */
  392. #define GXandInverted 0x4 /* NOT src AND dst */
  393. #define GXnoop 0x5 /* dst */
  394. #define GXxor 0x6 /* src XOR dst */
  395. #define GXor 0x7 /* src OR dst */
  396. #define GXnor 0x8 /* NOT src AND NOT dst */
  397. #define GXequiv 0x9 /* NOT src XOR dst */
  398. #define GXinvert 0xa /* NOT dst */
  399. #define GXorReverse 0xb /* src OR NOT dst */
  400. #define GXcopyInverted 0xc /* NOT src */
  401. #define GXorInverted 0xd /* NOT src OR dst */
  402. #define GXnand 0xe /* NOT src OR NOT dst */
  403. #define GXset 0xf /* 1 */
  404. /* LineStyle */
  405. #define LineSolid 0
  406. #define LineOnOffDash 1
  407. #define LineDoubleDash 2
  408. /* capStyle */
  409. #define CapNotLast 0
  410. #define CapButt 1
  411. #define CapRound 2
  412. #define CapProjecting 3
  413. /* joinStyle */
  414. #define JoinMiter 0
  415. #define JoinRound 1
  416. #define JoinBevel 2
  417. /* fillStyle */
  418. #define FillSolid 0
  419. #define FillTiled 1
  420. #define FillStippled 2
  421. #define FillOpaqueStippled 3
  422. /* fillRule */
  423. #define EvenOddRule 0
  424. #define WindingRule 1
  425. /* subwindow mode */
  426. #define ClipByChildren 0
  427. #define IncludeInferiors 1
  428. /* SetClipRectangles ordering */
  429. #define Unsorted 0
  430. #define YSorted 1
  431. #define YXSorted 2
  432. #define YXBanded 3
  433. /* CoordinateMode for drawing routines */
  434. #define CoordModeOrigin 0 /* relative to the origin */
  435. #define CoordModePrevious       1 /* relative to previous point */
  436. /* Polygon shapes */
  437. #define Complex 0 /* paths may intersect */
  438. #define Nonconvex 1 /* no paths intersect, but not convex */
  439. #define Convex 2 /* wholly convex */
  440. /* Arc modes for PolyFillArc */
  441. #define ArcChord 0 /* join endpoints of arc */
  442. #define ArcPieSlice 1 /* join endpoints to center of arc */
  443. /* GC components: masks used in CreateGC, CopyGC, ChangeGC, OR'ed into
  444.    GC.stateChanges */
  445. #define GCFunction              (1L<<0)
  446. #define GCPlaneMask             (1L<<1)
  447. #define GCForeground            (1L<<2)
  448. #define GCBackground            (1L<<3)
  449. #define GCLineWidth             (1L<<4)
  450. #define GCLineStyle             (1L<<5)
  451. #define GCCapStyle              (1L<<6)
  452. #define GCJoinStyle (1L<<7)
  453. #define GCFillStyle (1L<<8)
  454. #define GCFillRule (1L<<9) 
  455. #define GCTile (1L<<10)
  456. #define GCStipple (1L<<11)
  457. #define GCTileStipXOrigin (1L<<12)
  458. #define GCTileStipYOrigin (1L<<13)
  459. #define GCFont  (1L<<14)
  460. #define GCSubwindowMode (1L<<15)
  461. #define GCGraphicsExposures     (1L<<16)
  462. #define GCClipXOrigin (1L<<17)
  463. #define GCClipYOrigin (1L<<18)
  464. #define GCClipMask (1L<<19)
  465. #define GCDashOffset (1L<<20)
  466. #define GCDashList (1L<<21)
  467. #define GCArcMode (1L<<22)
  468. #define GCLastBit 22
  469. /*****************************************************************
  470.  * FONTS 
  471.  *****************************************************************/
  472. /* used in QueryFont -- draw direction */
  473. #define FontLeftToRight 0
  474. #define FontRightToLeft 1
  475. #define FontChange 255
  476. /*****************************************************************
  477.  *  IMAGING 
  478.  *****************************************************************/
  479. /* ImageFormat -- PutImage, GetImage */
  480. #define XYBitmap 0 /* depth 1, XYFormat */
  481. #define XYPixmap 1 /* depth == drawable depth */
  482. #define ZPixmap 2 /* depth == drawable depth */
  483. /*****************************************************************
  484.  *  COLOR MAP STUFF 
  485.  *****************************************************************/
  486. /* For CreateColormap */
  487. #define AllocNone 0 /* create map with no entries */
  488. #define AllocAll 1 /* allocate entire map writeable */
  489. /* Flags used in StoreNamedColor, StoreColors */
  490. #define DoRed (1<<0)
  491. #define DoGreen (1<<1)
  492. #define DoBlue (1<<2)
  493. /*****************************************************************
  494.  * CURSOR STUFF
  495.  *****************************************************************/
  496. /* QueryBestSize Class */
  497. #define CursorShape 0 /* largest size that can be displayed */
  498. #define TileShape 1 /* size tiled fastest */
  499. #define StippleShape 2 /* size stippled fastest */
  500. /***************************************************************** 
  501.  * KEYBOARD/POINTER STUFF
  502.  *****************************************************************/
  503. #define AutoRepeatModeOff 0
  504. #define AutoRepeatModeOn 1
  505. #define AutoRepeatModeDefault 2
  506. #define LedModeOff 0
  507. #define LedModeOn 1
  508. /* masks for ChangeKeyboardControl */
  509. #define KBKeyClickPercent (1L<<0)
  510. #define KBBellPercent (1L<<1)
  511. #define KBBellPitch (1L<<2)
  512. #define KBBellDuration (1L<<3)
  513. #define KBLed (1L<<4)
  514. #define KBLedMode (1L<<5)
  515. #define KBKey (1L<<6)
  516. #define KBAutoRepeatMode (1L<<7)
  517. #define MappingSuccess      0
  518. #define MappingBusy         1
  519. #define MappingFailed 2
  520. #define MappingModifier 0
  521. #define MappingKeyboard 1
  522. #define MappingPointer 2
  523. /*****************************************************************
  524.  * SCREEN SAVER STUFF 
  525.  *****************************************************************/
  526. #define DontPreferBlanking 0
  527. #define PreferBlanking 1
  528. #define DefaultBlanking 2
  529. #define DisableScreenSaver 0
  530. #define DisableScreenInterval 0
  531. #define DontAllowExposures 0
  532. #define AllowExposures 1
  533. #define DefaultExposures 2
  534. /* for ForceScreenSaver */
  535. #define ScreenSaverReset 0
  536. #define ScreenSaverActive 1
  537. /*****************************************************************
  538.  * HOSTS AND CONNECTIONS
  539.  *****************************************************************/
  540. /* for ChangeHosts */
  541. #define HostInsert 0
  542. #define HostDelete 1
  543. /* for ChangeAccessControl */
  544. #define EnableAccess 1      
  545. #define DisableAccess 0
  546. /* Display classes  used in opening the connection 
  547.  * Note that the statically allocated ones are even numbered and the
  548.  * dynamically changeable ones are odd numbered */
  549. #define StaticGray 0
  550. #define GrayScale 1
  551. #define StaticColor 2
  552. #define PseudoColor 3
  553. #define TrueColor 4
  554. #define DirectColor 5
  555. /* Byte order  used in imageByteOrder and bitmapBitOrder */
  556. #define LSBFirst 0
  557. #define MSBFirst 1
  558. #endif /* X_H */