1/*
2 * Created by Bogdan D. bogdand@users.sourceforge.net
3 */
4
5#ifdef HAVE_CONFIG_H
6#include "config.h"
7#endif
8
9#include "xf86Module.h"
10
11static MODULESETUPPROTO(theatre_detectSetup);
12
13
14static XF86ModuleVersionInfo theatre_detectVersRec =
15{
16        "theatre_detect",
17        MODULEVENDORSTRING,
18        MODINFOSTRING1,
19        MODINFOSTRING2,
20        XORG_VERSION_CURRENT,
21        1, 0, 0,
22        ABI_CLASS_VIDEODRV,             /* This needs the video driver ABI */
23        ABI_VIDEODRV_VERSION,
24        MOD_CLASS_NONE,
25        {0,0,0,0}
26};
27
28_X_EXPORT XF86ModuleData theatre_detectModuleData = {
29        &theatre_detectVersRec,
30        theatre_detectSetup,
31        NULL
32};
33
34static pointer
35theatre_detectSetup(pointer module, pointer opts, int *errmaj, int *errmin) {
36   return (pointer)1;
37}
38