repo.or.cz
/
xorg_rtime.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
First import
[xorg_rtime.git]
/
xorg-server-1.4
/
hw
/
xfree86
/
dummylib
/
xf86opt.c
blob
1b7bca9c674e05f2a6ec60558ea65fc6f3dbce90
1
2
#ifdef HAVE_XORG_CONFIG_H
3
#include <xorg-config.h>
4
#endif
5
6
#include <X11/X.h>
7
#include
"os.h"
8
#include
"xf86.h"
9
#include
"xf86Priv.h"
10
11
/*
12
* Utility functions required by libxf86_os.
13
*/
14
15
_X_EXPORT
void
16
xf86ProcessOptions
(
int
i
,
pointer p
,
OptionInfoPtr o
)
17
{
18
}
19
20
_X_EXPORT Bool
21
xf86GetOptValBool
(
const
OptionInfoRec
*
o
,
int
i
,
Bool
*
b
)
22
{
23
return
FALSE
;
24
}
25