xref: /OK3568_Linux_fs/external/xserver/hw/xfree86/common/xorgHelper.c (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyun 
2*4882a593Smuzhiyun #ifdef HAVE_XORG_CONFIG_H
3*4882a593Smuzhiyun #include <xorg-config.h>
4*4882a593Smuzhiyun #endif
5*4882a593Smuzhiyun 
6*4882a593Smuzhiyun #include <X11/X.h>
7*4882a593Smuzhiyun #include "os.h"
8*4882a593Smuzhiyun #include "servermd.h"
9*4882a593Smuzhiyun #include "pixmapstr.h"
10*4882a593Smuzhiyun #include "windowstr.h"
11*4882a593Smuzhiyun #include "propertyst.h"
12*4882a593Smuzhiyun #include "gcstruct.h"
13*4882a593Smuzhiyun #include "loaderProcs.h"
14*4882a593Smuzhiyun #include "xf86.h"
15*4882a593Smuzhiyun #include "xf86Priv.h"
16*4882a593Smuzhiyun #include "xorgVersion.h"
17*4882a593Smuzhiyun 
18*4882a593Smuzhiyun CARD32
xorgGetVersion(void)19*4882a593Smuzhiyun xorgGetVersion(void)
20*4882a593Smuzhiyun {
21*4882a593Smuzhiyun     return XORG_VERSION_CURRENT;
22*4882a593Smuzhiyun }
23