Edit File by line
/home/barbar84/www/wp-conte.../plugins/sujqvwi/ExeBy/exe_root.../usr/include/X11
File: InitialI.h
/***********************************************************
[0] Fix | Delete
[1] Fix | Delete
Copyright 1987, 1988, 1994, 1998 The Open Group
[2] Fix | Delete
[3] Fix | Delete
Permission to use, copy, modify, distribute, and sell this software and its
[4] Fix | Delete
documentation for any purpose is hereby granted without fee, provided that
[5] Fix | Delete
the above copyright notice appear in all copies and that both that
[6] Fix | Delete
copyright notice and this permission notice appear in supporting
[7] Fix | Delete
documentation.
[8] Fix | Delete
[9] Fix | Delete
The above copyright notice and this permission notice shall be included in
[10] Fix | Delete
all copies or substantial portions of the Software.
[11] Fix | Delete
[12] Fix | Delete
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
[13] Fix | Delete
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
[14] Fix | Delete
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
[15] Fix | Delete
OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
[16] Fix | Delete
AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
[17] Fix | Delete
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
[18] Fix | Delete
[19] Fix | Delete
Except as contained in this notice, the name of The Open Group shall not be
[20] Fix | Delete
used in advertising or otherwise to promote the sale, use or other dealings
[21] Fix | Delete
in this Software without prior written authorization from The Open Group.
[22] Fix | Delete
[23] Fix | Delete
[24] Fix | Delete
Copyright 1987, 1988 by Digital Equipment Corporation, Maynard, Massachusetts.
[25] Fix | Delete
[26] Fix | Delete
All Rights Reserved
[27] Fix | Delete
[28] Fix | Delete
Permission to use, copy, modify, and distribute this software and its
[29] Fix | Delete
documentation for any purpose and without fee is hereby granted,
[30] Fix | Delete
provided that the above copyright notice appear in all copies and that
[31] Fix | Delete
both that copyright notice and this permission notice appear in
[32] Fix | Delete
supporting documentation, and that the name of Digital not be
[33] Fix | Delete
used in advertising or publicity pertaining to distribution of the
[34] Fix | Delete
software without specific, written prior permission.
[35] Fix | Delete
[36] Fix | Delete
DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
[37] Fix | Delete
ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
[38] Fix | Delete
DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
[39] Fix | Delete
ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
[40] Fix | Delete
WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
[41] Fix | Delete
ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
[42] Fix | Delete
SOFTWARE.
[43] Fix | Delete
[44] Fix | Delete
******************************************************************/
[45] Fix | Delete
[46] Fix | Delete
#ifndef _XtinitialI_h
[47] Fix | Delete
#define _XtinitialI_h
[48] Fix | Delete
[49] Fix | Delete
/****************************************************************
[50] Fix | Delete
*
[51] Fix | Delete
* Displays
[52] Fix | Delete
*
[53] Fix | Delete
****************************************************************/
[54] Fix | Delete
[55] Fix | Delete
#ifndef X_NOT_POSIX
[56] Fix | Delete
#ifdef _POSIX_SOURCE
[57] Fix | Delete
#include <limits.h>
[58] Fix | Delete
#else
[59] Fix | Delete
#define _POSIX_SOURCE
[60] Fix | Delete
#include <limits.h>
[61] Fix | Delete
#undef _POSIX_SOURCE
[62] Fix | Delete
#endif
[63] Fix | Delete
#endif
[64] Fix | Delete
#ifndef PATH_MAX
[65] Fix | Delete
#ifdef WIN32
[66] Fix | Delete
#define PATH_MAX 512
[67] Fix | Delete
#else
[68] Fix | Delete
#include <sys/param.h>
[69] Fix | Delete
#endif
[70] Fix | Delete
#ifndef PATH_MAX
[71] Fix | Delete
#ifdef MAXPATHLEN
[72] Fix | Delete
#define PATH_MAX MAXPATHLEN
[73] Fix | Delete
#else
[74] Fix | Delete
#define PATH_MAX 1024
[75] Fix | Delete
#endif
[76] Fix | Delete
#endif
[77] Fix | Delete
#endif
[78] Fix | Delete
[79] Fix | Delete
#include <X11/Xos.h>
[80] Fix | Delete
#include <X11/Xpoll.h>
[81] Fix | Delete
[82] Fix | Delete
_XFUNCPROTOBEGIN
[83] Fix | Delete
[84] Fix | Delete
typedef struct _TimerEventRec {
[85] Fix | Delete
struct timeval te_timer_value;
[86] Fix | Delete
struct _TimerEventRec *te_next;
[87] Fix | Delete
XtTimerCallbackProc te_proc;
[88] Fix | Delete
XtAppContext app;
[89] Fix | Delete
XtPointer te_closure;
[90] Fix | Delete
} TimerEventRec;
[91] Fix | Delete
[92] Fix | Delete
typedef struct _InputEvent {
[93] Fix | Delete
XtInputCallbackProc ie_proc;
[94] Fix | Delete
XtPointer ie_closure;
[95] Fix | Delete
struct _InputEvent *ie_next;
[96] Fix | Delete
struct _InputEvent *ie_oq;
[97] Fix | Delete
XtAppContext app;
[98] Fix | Delete
int ie_source;
[99] Fix | Delete
XtInputMask ie_condition;
[100] Fix | Delete
} InputEvent;
[101] Fix | Delete
[102] Fix | Delete
typedef struct _SignalEventRec {
[103] Fix | Delete
XtSignalCallbackProc se_proc;
[104] Fix | Delete
XtPointer se_closure;
[105] Fix | Delete
struct _SignalEventRec *se_next;
[106] Fix | Delete
XtAppContext app;
[107] Fix | Delete
Boolean se_notice;
[108] Fix | Delete
} SignalEventRec;
[109] Fix | Delete
[110] Fix | Delete
typedef struct _WorkProcRec {
[111] Fix | Delete
XtWorkProc proc;
[112] Fix | Delete
XtPointer closure;
[113] Fix | Delete
struct _WorkProcRec *next;
[114] Fix | Delete
XtAppContext app;
[115] Fix | Delete
} WorkProcRec;
[116] Fix | Delete
[117] Fix | Delete
[118] Fix | Delete
typedef struct
[119] Fix | Delete
{
[120] Fix | Delete
#ifndef USE_POLL
[121] Fix | Delete
fd_set rmask;
[122] Fix | Delete
fd_set wmask;
[123] Fix | Delete
fd_set emask;
[124] Fix | Delete
#endif
[125] Fix | Delete
int nfds;
[126] Fix | Delete
} FdStruct;
[127] Fix | Delete
[128] Fix | Delete
typedef struct _LangProcRec {
[129] Fix | Delete
XtLanguageProc proc;
[130] Fix | Delete
XtPointer closure;
[131] Fix | Delete
} LangProcRec;
[132] Fix | Delete
[133] Fix | Delete
typedef struct _ProcessContextRec {
[134] Fix | Delete
XtAppContext defaultAppContext;
[135] Fix | Delete
XtAppContext appContextList;
[136] Fix | Delete
ConverterTable globalConverterTable;
[137] Fix | Delete
LangProcRec globalLangProcRec;
[138] Fix | Delete
} ProcessContextRec, *ProcessContext;
[139] Fix | Delete
[140] Fix | Delete
typedef struct {
[141] Fix | Delete
char* start;
[142] Fix | Delete
char* current;
[143] Fix | Delete
int bytes_remaining;
[144] Fix | Delete
} Heap;
[145] Fix | Delete
[146] Fix | Delete
typedef struct _DestroyRec DestroyRec;
[147] Fix | Delete
[148] Fix | Delete
[149] Fix | Delete
typedef struct _XtAppStruct {
[150] Fix | Delete
XtAppContext next; /* link to next app in process context */
[151] Fix | Delete
ProcessContext process; /* back pointer to our process context */
[152] Fix | Delete
InternalCallbackList destroy_callbacks;
[153] Fix | Delete
Display **list;
[154] Fix | Delete
TimerEventRec *timerQueue;
[155] Fix | Delete
WorkProcRec *workQueue;
[156] Fix | Delete
InputEvent **input_list;
[157] Fix | Delete
InputEvent *outstandingQueue;
[158] Fix | Delete
SignalEventRec *signalQueue;
[159] Fix | Delete
XrmDatabase errorDB;
[160] Fix | Delete
XtErrorMsgHandler errorMsgHandler, warningMsgHandler;
[161] Fix | Delete
XtErrorHandler errorHandler, warningHandler;
[162] Fix | Delete
struct _ActionListRec *action_table;
[163] Fix | Delete
ConverterTable converterTable;
[164] Fix | Delete
unsigned long selectionTimeout;
[165] Fix | Delete
FdStruct fds;
[166] Fix | Delete
short count; /* num of assigned entries in list */
[167] Fix | Delete
short max; /* allocate size of list */
[168] Fix | Delete
short last;
[169] Fix | Delete
short input_count;
[170] Fix | Delete
short input_max; /* elts input_list init'd with */
[171] Fix | Delete
Boolean sync, being_destroyed, error_inited;
[172] Fix | Delete
#ifndef NO_IDENTIFY_WINDOWS
[173] Fix | Delete
Boolean identify_windows; /* debugging hack */
[174] Fix | Delete
#endif
[175] Fix | Delete
Heap heap;
[176] Fix | Delete
String * fallback_resources; /* Set by XtAppSetFallbackResources. */
[177] Fix | Delete
struct _ActionHookRec* action_hook_list;
[178] Fix | Delete
struct _BlockHookRec* block_hook_list;
[179] Fix | Delete
int destroy_list_size; /* state data for 2-phase destroy */
[180] Fix | Delete
int destroy_count;
[181] Fix | Delete
int dispatch_level;
[182] Fix | Delete
DestroyRec* destroy_list;
[183] Fix | Delete
Widget in_phase2_destroy;
[184] Fix | Delete
LangProcRec langProcRec;
[185] Fix | Delete
struct _TMBindCacheRec * free_bindings;
[186] Fix | Delete
String display_name_tried;
[187] Fix | Delete
Display **dpy_destroy_list;
[188] Fix | Delete
int dpy_destroy_count;
[189] Fix | Delete
Boolean exit_flag;
[190] Fix | Delete
Boolean rebuild_fdlist;
[191] Fix | Delete
#ifdef XTHREADS
[192] Fix | Delete
LockPtr lock_info;
[193] Fix | Delete
ThreadAppProc lock;
[194] Fix | Delete
ThreadAppProc unlock;
[195] Fix | Delete
ThreadAppYieldLockProc yield_lock;
[196] Fix | Delete
ThreadAppRestoreLockProc restore_lock;
[197] Fix | Delete
ThreadAppProc free_lock;
[198] Fix | Delete
#endif
[199] Fix | Delete
} XtAppStruct;
[200] Fix | Delete
[201] Fix | Delete
extern void _XtHeapInit(Heap* heap);
[202] Fix | Delete
extern void _XtHeapFree(Heap* heap);
[203] Fix | Delete
[204] Fix | Delete
#ifdef XTTRACEMEMORY
[205] Fix | Delete
[206] Fix | Delete
[207] Fix | Delete
extern char *_XtHeapMalloc(
[208] Fix | Delete
Heap* /* heap */,
[209] Fix | Delete
Cardinal /* size */,
[210] Fix | Delete
char * /* file */,
[211] Fix | Delete
int /* line */
[212] Fix | Delete
);
[213] Fix | Delete
[214] Fix | Delete
#define _XtHeapAlloc(heap,bytes) _XtHeapMalloc(heap, bytes, __FILE__, __LINE__)
[215] Fix | Delete
[216] Fix | Delete
#else /* XTTRACEMEMORY */
[217] Fix | Delete
[218] Fix | Delete
extern char* _XtHeapAlloc(
[219] Fix | Delete
Heap* /* heap */,
[220] Fix | Delete
Cardinal /* size */
[221] Fix | Delete
);
[222] Fix | Delete
[223] Fix | Delete
#endif /* XTTRACEMEMORY */
[224] Fix | Delete
[225] Fix | Delete
extern void _XtSetDefaultErrorHandlers(
[226] Fix | Delete
XtErrorMsgHandler* /* errMsg */,
[227] Fix | Delete
XtErrorMsgHandler* /* warnMsg */,
[228] Fix | Delete
XtErrorHandler* /* err */,
[229] Fix | Delete
XtErrorHandler* /* warn */
[230] Fix | Delete
);
[231] Fix | Delete
[232] Fix | Delete
extern void _XtSetDefaultSelectionTimeout(
[233] Fix | Delete
unsigned long* /* timeout */
[234] Fix | Delete
);
[235] Fix | Delete
[236] Fix | Delete
extern XtAppContext _XtDefaultAppContext(
[237] Fix | Delete
void
[238] Fix | Delete
);
[239] Fix | Delete
[240] Fix | Delete
extern ProcessContext _XtGetProcessContext(
[241] Fix | Delete
void
[242] Fix | Delete
);
[243] Fix | Delete
[244] Fix | Delete
Display *
[245] Fix | Delete
_XtAppInit(
[246] Fix | Delete
XtAppContext* /* app_context_return */,
[247] Fix | Delete
String /* application_class */,
[248] Fix | Delete
XrmOptionDescRec* /* options */,
[249] Fix | Delete
Cardinal /* num_options */,
[250] Fix | Delete
int* /* argc_in_out */,
[251] Fix | Delete
String** /* argv_in_out */,
[252] Fix | Delete
String* /* fallback_resources */
[253] Fix | Delete
);
[254] Fix | Delete
[255] Fix | Delete
extern void _XtDestroyAppContexts(
[256] Fix | Delete
void
[257] Fix | Delete
);
[258] Fix | Delete
[259] Fix | Delete
extern void _XtCloseDisplays(
[260] Fix | Delete
XtAppContext /* app */
[261] Fix | Delete
);
[262] Fix | Delete
[263] Fix | Delete
extern int _XtAppDestroyCount;
[264] Fix | Delete
[265] Fix | Delete
extern int _XtWaitForSomething(
[266] Fix | Delete
XtAppContext /* app */,
[267] Fix | Delete
_XtBoolean /* ignoreEvents */,
[268] Fix | Delete
_XtBoolean /* ignoreTimers */,
[269] Fix | Delete
_XtBoolean /* ignoreInputs */,
[270] Fix | Delete
_XtBoolean /* ignoreSignals */,
[271] Fix | Delete
_XtBoolean /* block */,
[272] Fix | Delete
#ifdef XTHREADS
[273] Fix | Delete
_XtBoolean /* drop_lock */,
[274] Fix | Delete
#endif
[275] Fix | Delete
unsigned long* /* howlong */
[276] Fix | Delete
);
[277] Fix | Delete
[278] Fix | Delete
typedef struct _CaseConverterRec *CaseConverterPtr;
[279] Fix | Delete
typedef struct _CaseConverterRec {
[280] Fix | Delete
KeySym start; /* first KeySym valid in converter */
[281] Fix | Delete
KeySym stop; /* last KeySym valid in converter */
[282] Fix | Delete
XtCaseProc proc; /* case converter function */
[283] Fix | Delete
CaseConverterPtr next; /* next converter record */
[284] Fix | Delete
} CaseConverterRec;
[285] Fix | Delete
[286] Fix | Delete
typedef struct _ExtensionSelectorRec {
[287] Fix | Delete
XtExtensionSelectProc proc;
[288] Fix | Delete
int min, max;
[289] Fix | Delete
XtPointer client_data;
[290] Fix | Delete
} ExtSelectRec;
[291] Fix | Delete
[292] Fix | Delete
typedef struct _XtPerDisplayStruct {
[293] Fix | Delete
InternalCallbackList destroy_callbacks;
[294] Fix | Delete
Region region;
[295] Fix | Delete
CaseConverterPtr case_cvt; /* user-registered case converters */
[296] Fix | Delete
XtKeyProc defaultKeycodeTranslator;
[297] Fix | Delete
XtAppContext appContext;
[298] Fix | Delete
unsigned long keysyms_serial; /* for tracking MappingNotify events */
[299] Fix | Delete
KeySym *keysyms; /* keycode to keysym table */
[300] Fix | Delete
int keysyms_per_keycode; /* number of keysyms for each keycode*/
[301] Fix | Delete
int min_keycode, max_keycode; /* range of keycodes */
[302] Fix | Delete
KeySym *modKeysyms; /* keysym values for modToKeysysm */
[303] Fix | Delete
ModToKeysymTable *modsToKeysyms; /* modifiers to Keysysms index table*/
[304] Fix | Delete
unsigned char isModifier[32]; /* key-is-modifier-p bit table */
[305] Fix | Delete
KeySym lock_meaning; /* Lock modifier meaning */
[306] Fix | Delete
Modifiers mode_switch; /* keyboard group modifiers */
[307] Fix | Delete
Modifiers num_lock; /* keyboard numlock modifiers */
[308] Fix | Delete
Boolean being_destroyed;
[309] Fix | Delete
Boolean rv; /* reverse_video resource */
[310] Fix | Delete
XrmName name; /* resolved app name */
[311] Fix | Delete
XrmClass class; /* application class */
[312] Fix | Delete
Heap heap;
[313] Fix | Delete
struct _GCrec *GClist; /* support for XtGetGC */
[314] Fix | Delete
Drawable **pixmap_tab; /* ditto for XtGetGC */
[315] Fix | Delete
String language; /* XPG language string */
[316] Fix | Delete
XEvent last_event; /* last event dispatched */
[317] Fix | Delete
Time last_timestamp; /* from last event dispatched */
[318] Fix | Delete
int multi_click_time; /* for XtSetMultiClickTime */
[319] Fix | Delete
struct _TMKeyContextRec* tm_context; /* for XtGetActionKeysym */
[320] Fix | Delete
InternalCallbackList mapping_callbacks; /* special case for TM */
[321] Fix | Delete
XtPerDisplayInputRec pdi; /* state for modal grabs & kbd focus */
[322] Fix | Delete
struct _WWTable *WWtable; /* window to widget table */
[323] Fix | Delete
XrmDatabase *per_screen_db; /* per screen resource databases */
[324] Fix | Delete
XrmDatabase cmd_db; /* db from command line, if needed */
[325] Fix | Delete
XrmDatabase server_db; /* resource property else .Xdefaults */
[326] Fix | Delete
XtEventDispatchProc* dispatcher_list;
[327] Fix | Delete
ExtSelectRec* ext_select_list;
[328] Fix | Delete
int ext_select_count;
[329] Fix | Delete
Widget hook_object;
[330] Fix | Delete
#ifndef X_NO_RESOURCE_CONFIGURATION_MANAGEMENT
[331] Fix | Delete
Atom rcm_init; /* ResConfig - initialize */
[332] Fix | Delete
Atom rcm_data; /* ResConfig - data atom */
[333] Fix | Delete
#endif
[334] Fix | Delete
} XtPerDisplayStruct, *XtPerDisplay;
[335] Fix | Delete
[336] Fix | Delete
typedef struct _PerDisplayTable {
[337] Fix | Delete
Display *dpy;
[338] Fix | Delete
XtPerDisplayStruct perDpy;
[339] Fix | Delete
struct _PerDisplayTable *next;
[340] Fix | Delete
} PerDisplayTable, *PerDisplayTablePtr;
[341] Fix | Delete
[342] Fix | Delete
extern PerDisplayTablePtr _XtperDisplayList;
[343] Fix | Delete
[344] Fix | Delete
extern XtPerDisplay _XtSortPerDisplayList(
[345] Fix | Delete
Display* /* dpy */
[346] Fix | Delete
);
[347] Fix | Delete
[348] Fix | Delete
extern XtPerDisplay _XtGetPerDisplay(
[349] Fix | Delete
Display* /* dpy */
[350] Fix | Delete
);
[351] Fix | Delete
[352] Fix | Delete
extern XtPerDisplayInputRec* _XtGetPerDisplayInput(
[353] Fix | Delete
Display* /* dpy */
[354] Fix | Delete
);
[355] Fix | Delete
[356] Fix | Delete
#if 0
[357] Fix | Delete
#ifdef DEBUG
[358] Fix | Delete
#define _XtGetPerDisplay(display) \
[359] Fix | Delete
((_XtperDisplayList != NULL && (_XtperDisplayList->dpy == (display))) \
[360] Fix | Delete
? &_XtperDisplayList->perDpy \
[361] Fix | Delete
: _XtSortPerDisplayList(display))
[362] Fix | Delete
#define _XtGetPerDisplayInput(display) \
[363] Fix | Delete
((_XtperDisplayList != NULL && (_XtperDisplayList->dpy == (display))) \
[364] Fix | Delete
? &_XtperDisplayList->perDpy.pdi \
[365] Fix | Delete
: &_XtSortPerDisplayList(display)->pdi)
[366] Fix | Delete
#else
[367] Fix | Delete
#define _XtGetPerDisplay(display) \
[368] Fix | Delete
((_XtperDisplayList->dpy == (display)) \
[369] Fix | Delete
? &_XtperDisplayList->perDpy \
[370] Fix | Delete
: _XtSortPerDisplayList(display))
[371] Fix | Delete
#define _XtGetPerDisplayInput(display) \
[372] Fix | Delete
((_XtperDisplayList->dpy == (display)) \
[373] Fix | Delete
? &_XtperDisplayList->perDpy.pdi \
[374] Fix | Delete
: &_XtSortPerDisplayList(display)->pdi)
[375] Fix | Delete
#endif /*DEBUG*/
[376] Fix | Delete
#endif
[377] Fix | Delete
[378] Fix | Delete
extern void _XtDisplayInitialize(
[379] Fix | Delete
Display* /* dpy */,
[380] Fix | Delete
XtPerDisplay /* pd */,
[381] Fix | Delete
_Xconst char* /* name */,
[382] Fix | Delete
XrmOptionDescRec* /* urlist */,
[383] Fix | Delete
Cardinal /* num_urs */,
[384] Fix | Delete
int* /* argc */,
[385] Fix | Delete
char** /* argv */
[386] Fix | Delete
);
[387] Fix | Delete
[388] Fix | Delete
extern void _XtCacheFlushTag(
[389] Fix | Delete
XtAppContext /* app */,
[390] Fix | Delete
XtPointer /* tag */
[391] Fix | Delete
);
[392] Fix | Delete
[393] Fix | Delete
extern void _XtFreeActions(
[394] Fix | Delete
struct _ActionListRec* /* action_table */
[395] Fix | Delete
);
[396] Fix | Delete
[397] Fix | Delete
extern void _XtDoPhase2Destroy(
[398] Fix | Delete
XtAppContext /* app */,
[399] Fix | Delete
int /* dispatch_level */
[400] Fix | Delete
);
[401] Fix | Delete
[402] Fix | Delete
extern void _XtDoFreeBindings(
[403] Fix | Delete
XtAppContext /* app */
[404] Fix | Delete
);
[405] Fix | Delete
[406] Fix | Delete
extern void _XtExtensionSelect(
[407] Fix | Delete
Widget /* widget */
[408] Fix | Delete
);
[409] Fix | Delete
[410] Fix | Delete
#define _XtSafeToDestroy(app) ((app)->dispatch_level == 0)
[411] Fix | Delete
[412] Fix | Delete
extern void _XtAllocWWTable(
[413] Fix | Delete
XtPerDisplay pd
[414] Fix | Delete
);
[415] Fix | Delete
[416] Fix | Delete
extern void _XtFreeWWTable(
[417] Fix | Delete
XtPerDisplay pd
[418] Fix | Delete
);
[419] Fix | Delete
[420] Fix | Delete
extern String _XtGetUserName(String dest, int len);
[421] Fix | Delete
extern XrmDatabase _XtPreparseCommandLine(XrmOptionDescRec *urlist,
[422] Fix | Delete
Cardinal num_urs, int argc, String *argv,
[423] Fix | Delete
String *applName, String *displayName,
[424] Fix | Delete
String *language);
[425] Fix | Delete
[426] Fix | Delete
_XFUNCPROTOEND
[427] Fix | Delete
[428] Fix | Delete
#endif /* _XtinitialI_h */
[429] Fix | Delete
[430] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function