1#ifdef HAVE_CONFIG_H 2#include "config.h" 3#endif 4 5#include "xf86Module.h" 6 7static MODULESETUPPROTO(theatreSetup); 8 9 10static XF86ModuleVersionInfo theatreVersRec = 11{ 12 "theatre", 13 MODULEVENDORSTRING, 14 MODINFOSTRING1, 15 MODINFOSTRING2, 16 XORG_VERSION_CURRENT, 17 1, 0, 0, 18 ABI_CLASS_VIDEODRV, /* This needs the video driver ABI */ 19 ABI_VIDEODRV_VERSION, 20 MOD_CLASS_NONE, 21 {0,0,0,0} 22}; 23 24_X_EXPORT XF86ModuleData theatreModuleData = { 25 &theatreVersRec, 26 theatreSetup, 27 NULL 28}; 29 30static pointer 31theatreSetup(pointer module, pointer opts, int *errmaj, int *errmin) { 32 return (pointer)1; 33} 34