VirtualBox

source: vbox/trunk/src/VBox/Additions/x11/x11include/xorg-server-1.9.0/Configint.h@ 62425

最後變更 在這個檔案從62425是 32163,由 vboxsync 提交於 14 年 前

Additions/x11/x11include: additional headers for building drivers for X.Org Server 1.9

  • 屬性 svn:eol-style 設為 native
檔案大小: 8.0 KB
 
1/*
2 *
3 * Copyright (c) 1997 Metro Link Incorporated
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 * and/or sell copies of the Software, and to permit persons to whom the
10 * Software is furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice shall be included in
13 * all copies or substantial portions of the Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
19 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
20 * OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 * SOFTWARE.
22 *
23 * Except as contained in this notice, the name of the Metro Link shall not be
24 * used in advertising or otherwise to promote the sale, use or other dealings
25 * in this Software without prior written authorization from Metro Link.
26 *
27 */
28/*
29 * Copyright (c) 1997-2002 by The XFree86 Project, Inc.
30 *
31 * Permission is hereby granted, free of charge, to any person obtaining a
32 * copy of this software and associated documentation files (the "Software"),
33 * to deal in the Software without restriction, including without limitation
34 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
35 * and/or sell copies of the Software, and to permit persons to whom the
36 * Software is furnished to do so, subject to the following conditions:
37 *
38 * The above copyright notice and this permission notice shall be included in
39 * all copies or substantial portions of the Software.
40 *
41 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
42 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
43 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
44 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
45 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
46 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
47 * OTHER DEALINGS IN THE SOFTWARE.
48 *
49 * Except as contained in this notice, the name of the copyright holder(s)
50 * and author(s) shall not be used in advertising or otherwise to promote
51 * the sale, use or other dealings in this Software without prior written
52 * authorization from the copyright holder(s) and author(s).
53 */
54
55
56/*
57 * These definitions are used through out the configuration file parser, but
58 * they should not be visible outside of the parser.
59 */
60
61#ifdef HAVE_XORG_CONFIG_H
62#include <xorg-config.h>
63#endif
64
65#ifndef _Configint_h_
66#define _Configint_h_
67
68#include <stdio.h>
69#include <string.h>
70#include <stdarg.h>
71#include <stddef.h>
72#include "xf86Parser.h"
73
74typedef enum { PARSE_DECIMAL, PARSE_OCTAL, PARSE_HEX } ParserNumType;
75
76typedef struct
77{
78 int num; /* returned number */
79 char *str; /* private copy of the return-string */
80 double realnum; /* returned number as a real */
81 ParserNumType numType; /* used to enforce correct number formatting */
82}
83LexRec, *LexPtr;
84
85#ifndef TRUE
86#define TRUE 1
87#endif
88
89#ifndef FALSE
90#define FALSE 0
91#endif
92
93#include "configProcs.h"
94#include <stdlib.h>
95
96#define TestFree(a) if (a) { free (a); a = NULL; }
97
98#define parsePrologue(typeptr,typerec) typeptr ptr; \
99if( (ptr=calloc(1,sizeof(typerec))) == NULL ) { return NULL; }
100
101#define parsePrologueVoid(typeptr,typerec) int token; typeptr ptr; \
102if( (ptr=calloc(1,sizeof(typerec))) == NULL ) { return; }
103
104#define HANDLE_RETURN(f,func)\
105if ((ptr->f=func) == NULL)\
106{\
107 CLEANUP (ptr);\
108 return NULL;\
109}
110
111#define HANDLE_LIST(field,func,type)\
112{\
113type p = func ();\
114if (p == NULL)\
115{\
116 CLEANUP (ptr);\
117 return NULL;\
118}\
119else\
120{\
121 ptr->field = (type) xf86addListItem ((glp) ptr->field, (glp) p);\
122}\
123}
124
125#define Error(a,b) do { \
126 xf86parseError (a, b); CLEANUP (ptr); return NULL; \
127 } while (0)
128
129/*
130 * These are defines for error messages to promote consistency.
131 * error messages are preceded by the line number, section and file name,
132 * so these messages should be about the specific keyword and syntax in error.
133 * To help limit namespace polution, end each with _MSG.
134 * limit messages to 70 characters if possible.
135 */
136
137#define BAD_OPTION_MSG \
138"The Option keyword requires 1 or 2 quoted strings to follow it."
139#define INVALID_KEYWORD_MSG \
140"\"%s\" is not a valid keyword in this section."
141#define INVALID_SECTION_MSG \
142"\"%s\" is not a valid section name."
143#define UNEXPECTED_EOF_MSG \
144"Unexpected EOF. Missing EndSection keyword?"
145#define QUOTE_MSG \
146"The %s keyword requires a quoted string to follow it."
147#define NUMBER_MSG \
148"The %s keyword requires a number to follow it."
149#define POSITIVE_INT_MSG \
150"The %s keyword requires a positive integer to follow it."
151#define BOOL_MSG \
152"The %s keyword requires a boolean to follow it."
153#define ZAXISMAPPING_MSG \
154"The ZAxisMapping keyword requires 2 positive numbers or X or Y to follow it."
155#define AUTOREPEAT_MSG \
156"The AutoRepeat keyword requires 2 numbers (delay and rate) to follow it."
157#define XLEDS_MSG \
158"The XLeds keyword requries one or more numbers to follow it."
159#define DACSPEED_MSG \
160"The DacSpeed keyword must be followed by a list of up to %d numbers."
161#define DISPLAYSIZE_MSG \
162"The DisplaySize keyword must be followed by the width and height in mm."
163#define HORIZSYNC_MSG \
164"The HorizSync keyword must be followed by a list of numbers or ranges."
165#define VERTREFRESH_MSG \
166"The VertRefresh keyword must be followed by a list of numbers or ranges."
167#define VIEWPORT_MSG \
168"The Viewport keyword must be followed by an X and Y value."
169#define VIRTUAL_MSG \
170"The Virtual keyword must be followed by a width and height value."
171#define WEIGHT_MSG \
172"The Weight keyword must be followed by red, green and blue values."
173#define BLACK_MSG \
174"The Black keyword must be followed by red, green and blue values."
175#define WHITE_MSG \
176"The White keyword must be followed by red, green and blue values."
177#define SCREEN_MSG \
178"The Screen keyword must be followed by an optional number, a screen name\n" \
179"\tin quotes, and optional position/layout information."
180#define INVALID_SCR_MSG \
181"Invalid Screen line."
182#define INPUTDEV_MSG \
183"The InputDevice keyword must be followed by an input device name in quotes."
184#define INACTIVE_MSG \
185"The Inactive keyword must be followed by a Device name in quotes."
186#define UNDEFINED_SCREEN_MSG \
187"Undefined Screen \"%s\" referenced by ServerLayout \"%s\"."
188#define UNDEFINED_MODES_MSG \
189"Undefined Modes Section \"%s\" referenced by Monitor \"%s\"."
190#define UNDEFINED_DEVICE_MSG \
191"Undefined Device \"%s\" referenced by Screen \"%s\"."
192#define UNDEFINED_ADAPTOR_MSG \
193"Undefined VideoAdaptor \"%s\" referenced by Screen \"%s\"."
194#define ADAPTOR_REF_TWICE_MSG \
195"VideoAdaptor \"%s\" already referenced by Screen \"%s\"."
196#define UNDEFINED_DEVICE_LAY_MSG \
197"Undefined Device \"%s\" referenced by ServerLayout \"%s\"."
198#define UNDEFINED_INPUT_MSG \
199"Undefined InputDevice \"%s\" referenced by ServerLayout \"%s\"."
200#define NO_IDENT_MSG \
201"This section must have an Identifier line."
202#define ONLY_ONE_MSG \
203"This section must have only one of either %s line."
204#define UNDEFINED_INPUTDRIVER_MSG \
205"InputDevice section \"%s\" must have a Driver line."
206#define INVALID_GAMMA_MSG \
207"gamma correction value(s) expected\n either one value or three r/g/b values."
208#define GROUP_MSG \
209"The Group keyword must be followed by either a group name in quotes or\n" \
210"\ta numerical group id."
211#define MULTIPLE_MSG \
212"Multiple \"%s\" lines."
213#define MUST_BE_OCTAL_MSG \
214"The number \"%d\" given in this section must be in octal (0xxx) format."
215
216/* Warning messages */
217#define OBSOLETE_MSG \
218"Ignoring obsolete keyword \"%s\"."
219#define MOVED_TO_FLAGS_MSG \
220"Keyword \"%s\" is now an Option flag in the ServerFlags section."
221
222#endif /* _Configint_h_ */
注意: 瀏覽 TracBrowser 來幫助您使用儲存庫瀏覽器

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette