3 * Copyright (c) 1997 Metro Link Incorporated
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:
12 * The above copyright notice and this permission notice shall be included in
13 * all copies or substantial portions of the Software.
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
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.
29 * Copyright (c) 1997-2001 by The XFree86 Project, Inc.
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:
38 * The above copyright notice and this permission notice shall be included in
39 * all copies or substantial portions of the Software.
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.
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).
57 * This file contains the Option Record that is passed between the Parser,
58 * and Module setup procs.
60 #ifdef HAVE_XORG_CONFIG_H
61 #include <xorg-config.h>
64 #ifndef _xf86Optrec_h_
65 #define _xf86Optrec_h_
69 * all records that need to be linked lists should contain a GenericList as
72 typedef struct generic_list_rec
76 GenericListRec
, *GenericListPtr
, *glp
;
79 * All options are stored using this data type.
89 XF86OptionRec
, *XF86OptionPtr
;
92 XF86OptionPtr
xf86addNewOption(XF86OptionPtr head
, char *name
, char *val
);
93 XF86OptionPtr
xf86optionListDup(XF86OptionPtr opt
);
94 void xf86optionListFree(XF86OptionPtr opt
);
95 char *xf86optionName(XF86OptionPtr opt
);
96 char *xf86optionValue(XF86OptionPtr opt
);
97 XF86OptionPtr
xf86newOption(char *name
, char *value
);
98 XF86OptionPtr
xf86nextOption(XF86OptionPtr list
);
99 XF86OptionPtr
xf86findOption(XF86OptionPtr list
, const char *name
);
100 char *xf86findOptionValue(XF86OptionPtr list
, const char *name
);
101 int xf86findOptionBoolean (XF86OptionPtr
, const char *, int);
102 XF86OptionPtr
xf86optionListCreate(const char **options
, int count
, int used
);
103 XF86OptionPtr
xf86optionListMerge(XF86OptionPtr head
, XF86OptionPtr tail
);
104 char *xf86configStrdup (const char *s
);
105 int xf86nameCompare (const char *s1
, const char *s2
);
106 char *xf86uLongToString(unsigned long i
);
107 void xf86debugListOptions(XF86OptionPtr
);
108 XF86OptionPtr
xf86parseOption(XF86OptionPtr head
);
109 void xf86printOptionList(FILE *fp
, XF86OptionPtr list
, int tabs
);
112 #endif /* _xf86Optrec_h_ */