summaryrefslogtreecommitdiff
path: root/xc/programs/Xserver/hw/xfree86/int10/xf86int10module.c
diff options
context:
space:
mode:
Diffstat (limited to 'xc/programs/Xserver/hw/xfree86/int10/xf86int10module.c')
-rw-r--r--xc/programs/Xserver/hw/xfree86/int10/xf86int10module.c53
1 files changed, 53 insertions, 0 deletions
diff --git a/xc/programs/Xserver/hw/xfree86/int10/xf86int10module.c b/xc/programs/Xserver/hw/xfree86/int10/xf86int10module.c
new file mode 100644
index 000000000..e77462985
--- /dev/null
+++ b/xc/programs/Xserver/hw/xfree86/int10/xf86int10module.c
@@ -0,0 +1,53 @@
+/* $XFree86: xc/programs/Xserver/hw/xfree86/int10/xf86int10module.c,v 1.1 2000/01/23 04:44:35 dawes Exp $ */
+/*
+ * XFree86 int10 module
+ * execute BIOS int 10h calls in x86 real mode environment
+ * Copyright 1999 Egbert Eich
+ */
+#include "xf86.h"
+#include "xf86str.h"
+#include "xf86Pci.h"
+#include "xf86int10.h"
+
+
+#ifdef XFree86LOADER
+
+static MODULESETUPPROTO(int10Setup);
+
+static XF86ModuleVersionInfo int10VersRec =
+{
+ "int10",
+ MODULEVENDORSTRING,
+ MODINFOSTRING1,
+ MODINFOSTRING2,
+ XF86_VERSION_CURRENT,
+ 1, 0, 0,
+ ABI_CLASS_VIDEODRV, /* needs the video driver ABI */
+ ABI_VIDEODRV_VERSION,
+ MOD_CLASS_NONE,
+ {0,0,0,0}
+};
+
+XF86ModuleData int10ModuleData = { &int10VersRec, int10Setup, NULL };
+
+static pointer
+int10Setup(pointer module, pointer opts, int *errmaj, int *errmin)
+{
+ static Bool setupDone = FALSE;
+
+ if (!setupDone) {
+ setupDone = TRUE;
+ /*
+ * Tell the loader about symbols from other modules that this module
+ * might refer to.
+ */
+ }
+ /*
+ * The return value must be non-NULL on success even though there
+ * is no TearDownProc.
+ */
+ return (pointer)1;
+}
+
+#endif
+