Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/bindings/globalkeys/globalkeysmodule.c
diff options
context:
space:
mode:
Diffstat (limited to 'bindings/globalkeys/globalkeysmodule.c')
-rw-r--r--bindings/globalkeys/globalkeysmodule.c27
1 files changed, 27 insertions, 0 deletions
diff --git a/bindings/globalkeys/globalkeysmodule.c b/bindings/globalkeys/globalkeysmodule.c
new file mode 100644
index 0000000..9034f51
--- /dev/null
+++ b/bindings/globalkeys/globalkeysmodule.c
@@ -0,0 +1,27 @@
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+/* include this first, before NO_IMPORT_PYGOBJECT is defined */
+#include <pygobject.h>
+
+void pyglobalkeys_register_classes (PyObject *d);
+
+extern PyMethodDef pyglobalkeys_functions[];
+
+DL_EXPORT(void)
+initglobalkeys(void)
+{
+ PyObject *m, *d;
+
+ init_pygobject ();
+
+ m = Py_InitModule ("globalkeys", pyglobalkeys_functions);
+ d = PyModule_GetDict (m);
+
+ pyglobalkeys_register_classes (d);
+
+ if (PyErr_Occurred ()) {
+ Py_FatalError ("can't initialise module globalkeys");
+ }
+}