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