1 | /* $XFree86: xc/programs/Xserver/hw/xfree86/common/xf86Config.h,v 1.5 2000/02/24 05:36:50 tsi Exp $ */
|
---|
2 | /*
|
---|
3 | * Copyright 1997 by The XFree86 Project, Inc
|
---|
4 | */
|
---|
5 |
|
---|
6 | #ifndef _xf86_config_h
|
---|
7 | #define _xf86_config_h
|
---|
8 |
|
---|
9 | #ifdef HAVE_PARSER_DECLS
|
---|
10 | /*
|
---|
11 | * global structure that holds the result of parsing the config file
|
---|
12 | */
|
---|
13 | extern XF86ConfigPtr xf86configptr;
|
---|
14 | #endif
|
---|
15 |
|
---|
16 | /*
|
---|
17 | * prototypes
|
---|
18 | */
|
---|
19 | char ** xf86ModulelistFromConfig(pointer **);
|
---|
20 | char ** xf86DriverlistFromConfig(void);
|
---|
21 | char ** xf86DriverlistFromCompile(void);
|
---|
22 | char ** xf86InputDriverlistFromConfig(void);
|
---|
23 | char ** xf86InputDriverlistFromCompile(void);
|
---|
24 | Bool xf86BuiltinInputDriver(const char *);
|
---|
25 | Bool xf86HandleConfigFile(void);
|
---|
26 |
|
---|
27 | #endif /* _xf86_config_h */
|
---|