4 /* Copyright (c) Nate Robins, 1997. */
6 /* This program is freely distributable without licensing fees
7 and is provided without guarantee or warrantee expressed or
8 implied. This program is -not- in the public domain. */
11 * Bitmask returned by XParseGeometry(). Each bit tells if the corresponding
12 * value (x, y, width, height) was found in the parsed string.
14 #define NoValue 0x0000
17 #define WidthValue 0x0004
18 #define HeightValue 0x0008
19 #define AllValues 0x000F
20 #define XNegative 0x0010
21 #define YNegative 0x0020
23 /* Function prototypes. */
25 extern int DisplayWidth();
26 extern int DisplayHeight();
28 extern int XParseGeometry(
31 unsigned int* width
, unsigned int* height
);
33 #endif /* __beos_x11_h__ */