diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2006-11-26 20:01:20 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2006-11-26 20:01:20 +0000 |
commit | f64208c5b21cacf13c1d8030377ae776bcddafab (patch) | |
tree | 929b94a5f86ed85d16cdfee329030802d4dab4d8 /driver/xf86-video-ati/src/theatre_module.c | |
parent | b24ec2b4f460860985999d38a67ba1f653dd2c26 (diff) |
Importing xf86-video-ati 6.6.3
Diffstat (limited to 'driver/xf86-video-ati/src/theatre_module.c')
-rw-r--r-- | driver/xf86-video-ati/src/theatre_module.c | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/driver/xf86-video-ati/src/theatre_module.c b/driver/xf86-video-ati/src/theatre_module.c new file mode 100644 index 000000000..608b35602 --- /dev/null +++ b/driver/xf86-video-ati/src/theatre_module.c @@ -0,0 +1,33 @@ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + +#include "xf86Module.h" + +static MODULESETUPPROTO(theatreSetup); + + +static XF86ModuleVersionInfo theatreVersRec = +{ + "theatre", + MODULEVENDORSTRING, + MODINFOSTRING1, + MODINFOSTRING2, + XORG_VERSION_CURRENT, + 1, 0, 0, + ABI_CLASS_VIDEODRV, /* This needs the video driver ABI */ + ABI_VIDEODRV_VERSION, + MOD_CLASS_NONE, + {0,0,0,0} +}; + +_X_EXPORT XF86ModuleData theatreModuleData = { + &theatreVersRec, + theatreSetup, + NULL +}; + +static pointer +theatreSetup(pointer module, pointer opts, int *errmaj, int *errmin) { + return (pointer)1; +} |