Edit File by line
/home/barbar84/public_h.../wp-conte.../plugins/sujqvwi/ExeBy/smexe_ro.../usr/include/X11
File: Xutil.h
[0] Fix | Delete
/***********************************************************
[1] Fix | Delete
[2] Fix | Delete
Copyright 1987, 1998 The Open Group
[3] Fix | Delete
[4] Fix | Delete
Permission to use, copy, modify, distribute, and sell this software and its
[5] Fix | Delete
documentation for any purpose is hereby granted without fee, provided that
[6] Fix | Delete
the above copyright notice appear in all copies and that both that
[7] Fix | Delete
copyright notice and this permission notice appear in supporting
[8] Fix | Delete
documentation.
[9] Fix | Delete
[10] Fix | Delete
The above copyright notice and this permission notice shall be included in
[11] Fix | Delete
all copies or substantial portions of the Software.
[12] Fix | Delete
[13] Fix | Delete
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
[14] Fix | Delete
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
[15] Fix | Delete
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
[16] Fix | Delete
OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
[17] Fix | Delete
AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
[18] Fix | Delete
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
[19] Fix | Delete
[20] Fix | Delete
Except as contained in this notice, the name of The Open Group shall not be
[21] Fix | Delete
used in advertising or otherwise to promote the sale, use or other dealings
[22] Fix | Delete
in this Software without prior written authorization from The Open Group.
[23] Fix | Delete
[24] Fix | Delete
[25] Fix | Delete
Copyright 1987 by Digital Equipment Corporation, Maynard, Massachusetts.
[26] Fix | Delete
[27] Fix | Delete
All Rights Reserved
[28] Fix | Delete
[29] Fix | Delete
Permission to use, copy, modify, and distribute this software and its
[30] Fix | Delete
documentation for any purpose and without fee is hereby granted,
[31] Fix | Delete
provided that the above copyright notice appear in all copies and that
[32] Fix | Delete
both that copyright notice and this permission notice appear in
[33] Fix | Delete
supporting documentation, and that the name of Digital not be
[34] Fix | Delete
used in advertising or publicity pertaining to distribution of the
[35] Fix | Delete
software without specific, written prior permission.
[36] Fix | Delete
[37] Fix | Delete
DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
[38] Fix | Delete
ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
[39] Fix | Delete
DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
[40] Fix | Delete
ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
[41] Fix | Delete
WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
[42] Fix | Delete
ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
[43] Fix | Delete
SOFTWARE.
[44] Fix | Delete
[45] Fix | Delete
******************************************************************/
[46] Fix | Delete
[47] Fix | Delete
#ifndef _X11_XUTIL_H_
[48] Fix | Delete
#define _X11_XUTIL_H_
[49] Fix | Delete
[50] Fix | Delete
/* You must include <X11/Xlib.h> before including this file */
[51] Fix | Delete
#include <X11/Xlib.h>
[52] Fix | Delete
#include <X11/keysym.h>
[53] Fix | Delete
[54] Fix | Delete
/* The Xlib structs are full of implicit padding to properly align members.
[55] Fix | Delete
We can't clean that up without breaking ABI, so tell clang not to bother
[56] Fix | Delete
complaining about it. */
[57] Fix | Delete
#ifdef __clang__
[58] Fix | Delete
#pragma clang diagnostic push
[59] Fix | Delete
#pragma clang diagnostic ignored "-Wpadded"
[60] Fix | Delete
#endif
[61] Fix | Delete
[62] Fix | Delete
/*
[63] Fix | Delete
* Bitmask returned by XParseGeometry(). Each bit tells if the corresponding
[64] Fix | Delete
* value (x, y, width, height) was found in the parsed string.
[65] Fix | Delete
*/
[66] Fix | Delete
#define NoValue 0x0000
[67] Fix | Delete
#define XValue 0x0001
[68] Fix | Delete
#define YValue 0x0002
[69] Fix | Delete
#define WidthValue 0x0004
[70] Fix | Delete
#define HeightValue 0x0008
[71] Fix | Delete
#define AllValues 0x000F
[72] Fix | Delete
#define XNegative 0x0010
[73] Fix | Delete
#define YNegative 0x0020
[74] Fix | Delete
[75] Fix | Delete
/*
[76] Fix | Delete
* new version containing base_width, base_height, and win_gravity fields;
[77] Fix | Delete
* used with WM_NORMAL_HINTS.
[78] Fix | Delete
*/
[79] Fix | Delete
typedef struct {
[80] Fix | Delete
long flags; /* marks which fields in this structure are defined */
[81] Fix | Delete
int x, y; /* obsolete for new window mgrs, but clients */
[82] Fix | Delete
int width, height; /* should set so old wm's don't mess up */
[83] Fix | Delete
int min_width, min_height;
[84] Fix | Delete
int max_width, max_height;
[85] Fix | Delete
int width_inc, height_inc;
[86] Fix | Delete
struct {
[87] Fix | Delete
int x; /* numerator */
[88] Fix | Delete
int y; /* denominator */
[89] Fix | Delete
} min_aspect, max_aspect;
[90] Fix | Delete
int base_width, base_height; /* added by ICCCM version 1 */
[91] Fix | Delete
int win_gravity; /* added by ICCCM version 1 */
[92] Fix | Delete
} XSizeHints;
[93] Fix | Delete
[94] Fix | Delete
/*
[95] Fix | Delete
* The next block of definitions are for window manager properties that
[96] Fix | Delete
* clients and applications use for communication.
[97] Fix | Delete
*/
[98] Fix | Delete
[99] Fix | Delete
/* flags argument in size hints */
[100] Fix | Delete
#define USPosition (1L << 0) /* user specified x, y */
[101] Fix | Delete
#define USSize (1L << 1) /* user specified width, height */
[102] Fix | Delete
[103] Fix | Delete
#define PPosition (1L << 2) /* program specified position */
[104] Fix | Delete
#define PSize (1L << 3) /* program specified size */
[105] Fix | Delete
#define PMinSize (1L << 4) /* program specified minimum size */
[106] Fix | Delete
#define PMaxSize (1L << 5) /* program specified maximum size */
[107] Fix | Delete
#define PResizeInc (1L << 6) /* program specified resize increments */
[108] Fix | Delete
#define PAspect (1L << 7) /* program specified min and max aspect ratios */
[109] Fix | Delete
#define PBaseSize (1L << 8) /* program specified base for incrementing */
[110] Fix | Delete
#define PWinGravity (1L << 9) /* program specified window gravity */
[111] Fix | Delete
[112] Fix | Delete
/* obsolete */
[113] Fix | Delete
#define PAllHints (PPosition|PSize|PMinSize|PMaxSize|PResizeInc|PAspect)
[114] Fix | Delete
[115] Fix | Delete
[116] Fix | Delete
[117] Fix | Delete
typedef struct {
[118] Fix | Delete
long flags; /* marks which fields in this structure are defined */
[119] Fix | Delete
Bool input; /* does this application rely on the window manager to
[120] Fix | Delete
get keyboard input? */
[121] Fix | Delete
int initial_state; /* see below */
[122] Fix | Delete
Pixmap icon_pixmap; /* pixmap to be used as icon */
[123] Fix | Delete
Window icon_window; /* window to be used as icon */
[124] Fix | Delete
int icon_x, icon_y; /* initial position of icon */
[125] Fix | Delete
Pixmap icon_mask; /* icon mask bitmap */
[126] Fix | Delete
XID window_group; /* id of related window group */
[127] Fix | Delete
/* this structure may be extended in the future */
[128] Fix | Delete
} XWMHints;
[129] Fix | Delete
[130] Fix | Delete
/* definition for flags of XWMHints */
[131] Fix | Delete
[132] Fix | Delete
#define InputHint (1L << 0)
[133] Fix | Delete
#define StateHint (1L << 1)
[134] Fix | Delete
#define IconPixmapHint (1L << 2)
[135] Fix | Delete
#define IconWindowHint (1L << 3)
[136] Fix | Delete
#define IconPositionHint (1L << 4)
[137] Fix | Delete
#define IconMaskHint (1L << 5)
[138] Fix | Delete
#define WindowGroupHint (1L << 6)
[139] Fix | Delete
#define AllHints (InputHint|StateHint|IconPixmapHint|IconWindowHint| \
[140] Fix | Delete
IconPositionHint|IconMaskHint|WindowGroupHint)
[141] Fix | Delete
#define XUrgencyHint (1L << 8)
[142] Fix | Delete
[143] Fix | Delete
/* definitions for initial window state */
[144] Fix | Delete
#define WithdrawnState 0 /* for windows that are not mapped */
[145] Fix | Delete
#define NormalState 1 /* most applications want to start this way */
[146] Fix | Delete
#define IconicState 3 /* application wants to start as an icon */
[147] Fix | Delete
[148] Fix | Delete
/*
[149] Fix | Delete
* Obsolete states no longer defined by ICCCM
[150] Fix | Delete
*/
[151] Fix | Delete
#define DontCareState 0 /* don't know or care */
[152] Fix | Delete
#define ZoomState 2 /* application wants to start zoomed */
[153] Fix | Delete
#define InactiveState 4 /* application believes it is seldom used; */
[154] Fix | Delete
/* some wm's may put it on inactive menu */
[155] Fix | Delete
[156] Fix | Delete
[157] Fix | Delete
/*
[158] Fix | Delete
* new structure for manipulating TEXT properties; used with WM_NAME,
[159] Fix | Delete
* WM_ICON_NAME, WM_CLIENT_MACHINE, and WM_COMMAND.
[160] Fix | Delete
*/
[161] Fix | Delete
typedef struct {
[162] Fix | Delete
unsigned char *value; /* same as Property routines */
[163] Fix | Delete
Atom encoding; /* prop type */
[164] Fix | Delete
int format; /* prop data format: 8, 16, or 32 */
[165] Fix | Delete
unsigned long nitems; /* number of data items in value */
[166] Fix | Delete
} XTextProperty;
[167] Fix | Delete
[168] Fix | Delete
#define XNoMemory -1
[169] Fix | Delete
#define XLocaleNotSupported -2
[170] Fix | Delete
#define XConverterNotFound -3
[171] Fix | Delete
[172] Fix | Delete
typedef enum {
[173] Fix | Delete
XStringStyle, /* STRING */
[174] Fix | Delete
XCompoundTextStyle, /* COMPOUND_TEXT */
[175] Fix | Delete
XTextStyle, /* text in owner's encoding (current locale)*/
[176] Fix | Delete
XStdICCTextStyle, /* STRING, else COMPOUND_TEXT */
[177] Fix | Delete
/* The following is an XFree86 extension, introduced in November 2000 */
[178] Fix | Delete
XUTF8StringStyle /* UTF8_STRING */
[179] Fix | Delete
} XICCEncodingStyle;
[180] Fix | Delete
[181] Fix | Delete
typedef struct {
[182] Fix | Delete
int min_width, min_height;
[183] Fix | Delete
int max_width, max_height;
[184] Fix | Delete
int width_inc, height_inc;
[185] Fix | Delete
} XIconSize;
[186] Fix | Delete
[187] Fix | Delete
typedef struct {
[188] Fix | Delete
char *res_name;
[189] Fix | Delete
char *res_class;
[190] Fix | Delete
} XClassHint;
[191] Fix | Delete
[192] Fix | Delete
#ifdef XUTIL_DEFINE_FUNCTIONS
[193] Fix | Delete
extern int XDestroyImage(
[194] Fix | Delete
XImage *ximage);
[195] Fix | Delete
extern unsigned long XGetPixel(
[196] Fix | Delete
XImage *ximage,
[197] Fix | Delete
int x, int y);
[198] Fix | Delete
extern int XPutPixel(
[199] Fix | Delete
XImage *ximage,
[200] Fix | Delete
int x, int y,
[201] Fix | Delete
unsigned long pixel);
[202] Fix | Delete
extern XImage *XSubImage(
[203] Fix | Delete
XImage *ximage,
[204] Fix | Delete
int x, int y,
[205] Fix | Delete
unsigned int width, unsigned int height);
[206] Fix | Delete
extern int XAddPixel(
[207] Fix | Delete
XImage *ximage,
[208] Fix | Delete
long value);
[209] Fix | Delete
#else
[210] Fix | Delete
/*
[211] Fix | Delete
* These macros are used to give some sugar to the image routines so that
[212] Fix | Delete
* naive people are more comfortable with them.
[213] Fix | Delete
*/
[214] Fix | Delete
#define XDestroyImage(ximage) \
[215] Fix | Delete
((*((ximage)->f.destroy_image))((ximage)))
[216] Fix | Delete
#define XGetPixel(ximage, x, y) \
[217] Fix | Delete
((*((ximage)->f.get_pixel))((ximage), (x), (y)))
[218] Fix | Delete
#define XPutPixel(ximage, x, y, pixel) \
[219] Fix | Delete
((*((ximage)->f.put_pixel))((ximage), (x), (y), (pixel)))
[220] Fix | Delete
#define XSubImage(ximage, x, y, width, height) \
[221] Fix | Delete
((*((ximage)->f.sub_image))((ximage), (x), (y), (width), (height)))
[222] Fix | Delete
#define XAddPixel(ximage, value) \
[223] Fix | Delete
((*((ximage)->f.add_pixel))((ximage), (value)))
[224] Fix | Delete
#endif
[225] Fix | Delete
[226] Fix | Delete
/*
[227] Fix | Delete
* Compose sequence status structure, used in calling XLookupString.
[228] Fix | Delete
*/
[229] Fix | Delete
typedef struct _XComposeStatus {
[230] Fix | Delete
XPointer compose_ptr; /* state table pointer */
[231] Fix | Delete
int chars_matched; /* match state */
[232] Fix | Delete
} XComposeStatus;
[233] Fix | Delete
[234] Fix | Delete
/*
[235] Fix | Delete
* Keysym macros, used on Keysyms to test for classes of symbols
[236] Fix | Delete
*/
[237] Fix | Delete
#define IsKeypadKey(keysym) \
[238] Fix | Delete
(((KeySym)(keysym) >= XK_KP_Space) && ((KeySym)(keysym) <= XK_KP_Equal))
[239] Fix | Delete
[240] Fix | Delete
#define IsPrivateKeypadKey(keysym) \
[241] Fix | Delete
(((KeySym)(keysym) >= 0x11000000) && ((KeySym)(keysym) <= 0x1100FFFF))
[242] Fix | Delete
[243] Fix | Delete
#define IsCursorKey(keysym) \
[244] Fix | Delete
(((KeySym)(keysym) >= XK_Home) && ((KeySym)(keysym) < XK_Select))
[245] Fix | Delete
[246] Fix | Delete
#define IsPFKey(keysym) \
[247] Fix | Delete
(((KeySym)(keysym) >= XK_KP_F1) && ((KeySym)(keysym) <= XK_KP_F4))
[248] Fix | Delete
[249] Fix | Delete
#define IsFunctionKey(keysym) \
[250] Fix | Delete
(((KeySym)(keysym) >= XK_F1) && ((KeySym)(keysym) <= XK_F35))
[251] Fix | Delete
[252] Fix | Delete
#define IsMiscFunctionKey(keysym) \
[253] Fix | Delete
(((KeySym)(keysym) >= XK_Select) && ((KeySym)(keysym) <= XK_Break))
[254] Fix | Delete
[255] Fix | Delete
#ifdef XK_XKB_KEYS
[256] Fix | Delete
#define IsModifierKey(keysym) \
[257] Fix | Delete
((((KeySym)(keysym) >= XK_Shift_L) && ((KeySym)(keysym) <= XK_Hyper_R)) \
[258] Fix | Delete
|| (((KeySym)(keysym) >= XK_ISO_Lock) && \
[259] Fix | Delete
((KeySym)(keysym) <= XK_ISO_Level5_Lock)) \
[260] Fix | Delete
|| ((KeySym)(keysym) == XK_Mode_switch) \
[261] Fix | Delete
|| ((KeySym)(keysym) == XK_Num_Lock))
[262] Fix | Delete
#else
[263] Fix | Delete
#define IsModifierKey(keysym) \
[264] Fix | Delete
((((KeySym)(keysym) >= XK_Shift_L) && ((KeySym)(keysym) <= XK_Hyper_R)) \
[265] Fix | Delete
|| ((KeySym)(keysym) == XK_Mode_switch) \
[266] Fix | Delete
|| ((KeySym)(keysym) == XK_Num_Lock))
[267] Fix | Delete
#endif
[268] Fix | Delete
/*
[269] Fix | Delete
* opaque reference to Region data type
[270] Fix | Delete
*/
[271] Fix | Delete
typedef struct _XRegion *Region;
[272] Fix | Delete
[273] Fix | Delete
/* Return values from XRectInRegion() */
[274] Fix | Delete
[275] Fix | Delete
#define RectangleOut 0
[276] Fix | Delete
#define RectangleIn 1
[277] Fix | Delete
#define RectanglePart 2
[278] Fix | Delete
[279] Fix | Delete
[280] Fix | Delete
/*
[281] Fix | Delete
* Information used by the visual utility routines to find desired visual
[282] Fix | Delete
* type from the many visuals a display may support.
[283] Fix | Delete
*/
[284] Fix | Delete
[285] Fix | Delete
typedef struct {
[286] Fix | Delete
Visual *visual;
[287] Fix | Delete
VisualID visualid;
[288] Fix | Delete
int screen;
[289] Fix | Delete
int depth;
[290] Fix | Delete
#if defined(__cplusplus) || defined(c_plusplus)
[291] Fix | Delete
int c_class; /* C++ */
[292] Fix | Delete
#else
[293] Fix | Delete
int class;
[294] Fix | Delete
#endif
[295] Fix | Delete
unsigned long red_mask;
[296] Fix | Delete
unsigned long green_mask;
[297] Fix | Delete
unsigned long blue_mask;
[298] Fix | Delete
int colormap_size;
[299] Fix | Delete
int bits_per_rgb;
[300] Fix | Delete
} XVisualInfo;
[301] Fix | Delete
[302] Fix | Delete
#define VisualNoMask 0x0
[303] Fix | Delete
#define VisualIDMask 0x1
[304] Fix | Delete
#define VisualScreenMask 0x2
[305] Fix | Delete
#define VisualDepthMask 0x4
[306] Fix | Delete
#define VisualClassMask 0x8
[307] Fix | Delete
#define VisualRedMaskMask 0x10
[308] Fix | Delete
#define VisualGreenMaskMask 0x20
[309] Fix | Delete
#define VisualBlueMaskMask 0x40
[310] Fix | Delete
#define VisualColormapSizeMask 0x80
[311] Fix | Delete
#define VisualBitsPerRGBMask 0x100
[312] Fix | Delete
#define VisualAllMask 0x1FF
[313] Fix | Delete
[314] Fix | Delete
/*
[315] Fix | Delete
* This defines a window manager property that clients may use to
[316] Fix | Delete
* share standard color maps of type RGB_COLOR_MAP:
[317] Fix | Delete
*/
[318] Fix | Delete
typedef struct {
[319] Fix | Delete
Colormap colormap;
[320] Fix | Delete
unsigned long red_max;
[321] Fix | Delete
unsigned long red_mult;
[322] Fix | Delete
unsigned long green_max;
[323] Fix | Delete
unsigned long green_mult;
[324] Fix | Delete
unsigned long blue_max;
[325] Fix | Delete
unsigned long blue_mult;
[326] Fix | Delete
unsigned long base_pixel;
[327] Fix | Delete
VisualID visualid; /* added by ICCCM version 1 */
[328] Fix | Delete
XID killid; /* added by ICCCM version 1 */
[329] Fix | Delete
} XStandardColormap;
[330] Fix | Delete
[331] Fix | Delete
#define ReleaseByFreeingColormap ((XID) 1L) /* for killid field above */
[332] Fix | Delete
[333] Fix | Delete
[334] Fix | Delete
/*
[335] Fix | Delete
* return codes for XReadBitmapFile and XWriteBitmapFile
[336] Fix | Delete
*/
[337] Fix | Delete
#define BitmapSuccess 0
[338] Fix | Delete
#define BitmapOpenFailed 1
[339] Fix | Delete
#define BitmapFileInvalid 2
[340] Fix | Delete
#define BitmapNoMemory 3
[341] Fix | Delete
[342] Fix | Delete
/****************************************************************
[343] Fix | Delete
*
[344] Fix | Delete
* Context Management
[345] Fix | Delete
*
[346] Fix | Delete
****************************************************************/
[347] Fix | Delete
[348] Fix | Delete
[349] Fix | Delete
/* Associative lookup table return codes */
[350] Fix | Delete
[351] Fix | Delete
#define XCSUCCESS 0 /* No error. */
[352] Fix | Delete
#define XCNOMEM 1 /* Out of memory */
[353] Fix | Delete
#define XCNOENT 2 /* No entry in table */
[354] Fix | Delete
[355] Fix | Delete
typedef int XContext;
[356] Fix | Delete
[357] Fix | Delete
#define XUniqueContext() ((XContext) XrmUniqueQuark())
[358] Fix | Delete
#define XStringToContext(string) ((XContext) XrmStringToQuark(string))
[359] Fix | Delete
[360] Fix | Delete
_XFUNCPROTOBEGIN
[361] Fix | Delete
[362] Fix | Delete
/* The following declarations are alphabetized. */
[363] Fix | Delete
[364] Fix | Delete
extern XClassHint *XAllocClassHint (
[365] Fix | Delete
void
[366] Fix | Delete
);
[367] Fix | Delete
[368] Fix | Delete
extern XIconSize *XAllocIconSize (
[369] Fix | Delete
void
[370] Fix | Delete
);
[371] Fix | Delete
[372] Fix | Delete
extern XSizeHints *XAllocSizeHints (
[373] Fix | Delete
void
[374] Fix | Delete
);
[375] Fix | Delete
[376] Fix | Delete
extern XStandardColormap *XAllocStandardColormap (
[377] Fix | Delete
void
[378] Fix | Delete
);
[379] Fix | Delete
[380] Fix | Delete
extern XWMHints *XAllocWMHints (
[381] Fix | Delete
void
[382] Fix | Delete
);
[383] Fix | Delete
[384] Fix | Delete
extern int XClipBox(
[385] Fix | Delete
Region /* r */,
[386] Fix | Delete
XRectangle* /* rect_return */
[387] Fix | Delete
);
[388] Fix | Delete
[389] Fix | Delete
extern Region XCreateRegion(
[390] Fix | Delete
void
[391] Fix | Delete
);
[392] Fix | Delete
[393] Fix | Delete
extern const char *XDefaultString (void);
[394] Fix | Delete
[395] Fix | Delete
extern int XDeleteContext(
[396] Fix | Delete
Display* /* display */,
[397] Fix | Delete
XID /* rid */,
[398] Fix | Delete
XContext /* context */
[399] Fix | Delete
);
[400] Fix | Delete
[401] Fix | Delete
extern int XDestroyRegion(
[402] Fix | Delete
Region /* r */
[403] Fix | Delete
);
[404] Fix | Delete
[405] Fix | Delete
extern int XEmptyRegion(
[406] Fix | Delete
Region /* r */
[407] Fix | Delete
);
[408] Fix | Delete
[409] Fix | Delete
extern int XEqualRegion(
[410] Fix | Delete
Region /* r1 */,
[411] Fix | Delete
Region /* r2 */
[412] Fix | Delete
);
[413] Fix | Delete
[414] Fix | Delete
extern int XFindContext(
[415] Fix | Delete
Display* /* display */,
[416] Fix | Delete
XID /* rid */,
[417] Fix | Delete
XContext /* context */,
[418] Fix | Delete
XPointer* /* data_return */
[419] Fix | Delete
);
[420] Fix | Delete
[421] Fix | Delete
extern Status XGetClassHint(
[422] Fix | Delete
Display* /* display */,
[423] Fix | Delete
Window /* w */,
[424] Fix | Delete
XClassHint* /* class_hints_return */
[425] Fix | Delete
);
[426] Fix | Delete
[427] Fix | Delete
extern Status XGetIconSizes(
[428] Fix | Delete
Display* /* display */,
[429] Fix | Delete
Window /* w */,
[430] Fix | Delete
XIconSize** /* size_list_return */,
[431] Fix | Delete
int* /* count_return */
[432] Fix | Delete
);
[433] Fix | Delete
[434] Fix | Delete
extern Status XGetNormalHints(
[435] Fix | Delete
Display* /* display */,
[436] Fix | Delete
Window /* w */,
[437] Fix | Delete
XSizeHints* /* hints_return */
[438] Fix | Delete
);
[439] Fix | Delete
[440] Fix | Delete
extern Status XGetRGBColormaps(
[441] Fix | Delete
Display* /* display */,
[442] Fix | Delete
Window /* w */,
[443] Fix | Delete
XStandardColormap** /* stdcmap_return */,
[444] Fix | Delete
int* /* count_return */,
[445] Fix | Delete
Atom /* property */
[446] Fix | Delete
);
[447] Fix | Delete
[448] Fix | Delete
extern Status XGetSizeHints(
[449] Fix | Delete
Display* /* display */,
[450] Fix | Delete
Window /* w */,
[451] Fix | Delete
XSizeHints* /* hints_return */,
[452] Fix | Delete
Atom /* property */
[453] Fix | Delete
);
[454] Fix | Delete
[455] Fix | Delete
extern Status XGetStandardColormap(
[456] Fix | Delete
Display* /* display */,
[457] Fix | Delete
Window /* w */,
[458] Fix | Delete
XStandardColormap* /* colormap_return */,
[459] Fix | Delete
Atom /* property */
[460] Fix | Delete
);
[461] Fix | Delete
[462] Fix | Delete
extern Status XGetTextProperty(
[463] Fix | Delete
Display* /* display */,
[464] Fix | Delete
Window /* window */,
[465] Fix | Delete
XTextProperty* /* text_prop_return */,
[466] Fix | Delete
Atom /* property */
[467] Fix | Delete
);
[468] Fix | Delete
[469] Fix | Delete
extern XVisualInfo *XGetVisualInfo(
[470] Fix | Delete
Display* /* display */,
[471] Fix | Delete
long /* vinfo_mask */,
[472] Fix | Delete
XVisualInfo* /* vinfo_template */,
[473] Fix | Delete
int* /* nitems_return */
[474] Fix | Delete
);
[475] Fix | Delete
[476] Fix | Delete
extern Status XGetWMClientMachine(
[477] Fix | Delete
Display* /* display */,
[478] Fix | Delete
Window /* w */,
[479] Fix | Delete
XTextProperty* /* text_prop_return */
[480] Fix | Delete
);
[481] Fix | Delete
[482] Fix | Delete
extern XWMHints *XGetWMHints(
[483] Fix | Delete
Display* /* display */,
[484] Fix | Delete
Window /* w */
[485] Fix | Delete
);
[486] Fix | Delete
[487] Fix | Delete
extern Status XGetWMIconName(
[488] Fix | Delete
Display* /* display */,
[489] Fix | Delete
Window /* w */,
[490] Fix | Delete
XTextProperty* /* text_prop_return */
[491] Fix | Delete
);
[492] Fix | Delete
[493] Fix | Delete
extern Status XGetWMName(
[494] Fix | Delete
Display* /* display */,
[495] Fix | Delete
Window /* w */,
[496] Fix | Delete
XTextProperty* /* text_prop_return */
[497] Fix | Delete
);
[498] Fix | Delete
[499] Fix | Delete
12
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function