First import
[xorg_rtime.git] / xorg-server-1.4 / hw / xfree86 / vbe / vbe_module.c
blobcf37ef951e171f9a1f84c6e71098b23af6a5e524
1 #ifdef HAVE_XORG_CONFIG_H
2 #include <xorg-config.h>
3 #endif
5 #include "xf86.h"
6 #include "xf86str.h"
7 #include "vbe.h"
9 static MODULESETUPPROTO(vbeSetup);
11 static XF86ModuleVersionInfo vbeVersRec =
13 "vbe",
14 MODULEVENDORSTRING,
15 MODINFOSTRING1,
16 MODINFOSTRING2,
17 XORG_VERSION_CURRENT,
18 1, 1, 0,
19 ABI_CLASS_VIDEODRV, /* needs the video driver ABI */
20 ABI_VIDEODRV_VERSION,
21 MOD_CLASS_NONE,
22 {0,0,0,0}
25 _X_EXPORT XF86ModuleData vbeModuleData = { &vbeVersRec, vbeSetup, NULL };
27 static pointer
28 vbeSetup(pointer module, pointer opts, int *errmaj, int *errmin)
30 return (pointer)1;