~ubuntu-branches/ubuntu/precise/xorg-server/precise-updates

« back to all changes in this revision

Viewing changes to hw/xfree86/parser/Configint.h

Tags: 2:1.10.1-2
* Build xserver-xorg-core-udeb on hurd-i386.  Thanks, Samuel Thibault!
* Upload to unstable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
98
98
#define parsePrologue(typeptr,typerec) typeptr ptr; \
99
99
if( (ptr=calloc(1,sizeof(typerec))) == NULL ) { return NULL; }
100
100
 
101
 
#define parsePrologueVoid(typeptr,typerec) int token; typeptr ptr; \
102
 
if( (ptr=calloc(1,sizeof(typerec))) == NULL ) { return; }
103
 
 
104
101
#define HANDLE_RETURN(f,func)\
105
102
if ((ptr->f=func) == NULL)\
106
103
{\
152
149
"The %s keyword requires a boolean to follow it."
153
150
#define ZAXISMAPPING_MSG \
154
151
"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
152
#define DACSPEED_MSG \
160
153
"The DacSpeed keyword must be followed by a list of up to %d numbers."
161
154
#define DISPLAYSIZE_MSG \
216
209
/* Warning messages */
217
210
#define OBSOLETE_MSG \
218
211
"Ignoring obsolete keyword \"%s\"."
219
 
#define MOVED_TO_FLAGS_MSG \
220
 
"Keyword \"%s\" is now an Option flag in the ServerFlags section."
221
212
 
222
213
#endif /* _Configint_h_ */