1#ifdef HAVE_CONFIG_H 2#include "config.h" 3#endif 4 5#include "xf86Module.h" 6 7static MODULESETUPPROTO(theatre200Setup); 8 9 10static XF86ModuleVersionInfo theatre200VersRec = 11{ 12 "theatre200", 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 theatre200ModuleData = { 25 &theatre200VersRec, 26 theatre200Setup, 27 NULL 28}; 29 30static pointer 31theatre200Setup(pointer module, pointer opts, int *errmaj, int *errmin) { 32 return (pointer)1; 33} 34