aboutsummaryrefslogtreecommitdiff
path: root/xorg-server/hw/xfree86/dixmods/dbemodule.c
blob: 5541eacabdcf15628f7599354ef659ef7f868b89 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#ifdef HAVE_XORG_CONFIG_H
#include <xorg-config.h>
#endif

#include "xf86Module.h"
#include "globals.h"

static MODULESETUPPROTO(dbeSetup);

extern void DbeExtensionInit(INITARGS);

static ExtensionModule dbeExt = {
    DbeExtensionInit,
    "DOUBLE-BUFFER",
    &noDbeExtension,
    NULL,
    NULL
};

static XF86ModuleVersionInfo VersRec = {
    "dbe",
    MODULEVENDORSTRING,
    MODINFOSTRING1,
    MODINFOSTRING2,
    XORG_VERSION_CURRENT,
    1, 0, 0,
    ABI_CLASS_EXTENSION,
    ABI_EXTENSION_VERSION,
    MOD_CLASS_EXTENSION,
    {0, 0, 0, 0}
};

/*
 * Data for the loader
 */
_X_EXPORT XF86ModuleData dbeModuleData = { &VersRec, dbeSetup, NULL };

static pointer
dbeSetup(pointer module, pointer opts, int *errmaj, int *errmin)
{
    LoadExtension(&dbeExt, FALSE);

    /* Need a non-NULL return value to indicate success */
    return (pointer) 1;
}