Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/sugar/browser/_sugarbrowsermodule.c
diff options
context:
space:
mode:
Diffstat (limited to 'sugar/browser/_sugarbrowsermodule.c')
-rw-r--r--sugar/browser/_sugarbrowsermodule.c32
1 files changed, 32 insertions, 0 deletions
diff --git a/sugar/browser/_sugarbrowsermodule.c b/sugar/browser/_sugarbrowsermodule.c
new file mode 100644
index 0000000..653bbfa
--- /dev/null
+++ b/sugar/browser/_sugarbrowsermodule.c
@@ -0,0 +1,32 @@
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+#include "xulrunner.h"
+
+/* include this first, before NO_IMPORT_PYGOBJECT is defined */
+#include <pygobject.h>
+
+void py_sugarbrowser_register_classes (PyObject *d);
+
+extern PyMethodDef py_sugarbrowser_functions[];
+
+DL_EXPORT(void)
+init_sugarbrowser(void)
+{
+ PyObject *m, *d;
+
+ xulrunner_startup();
+
+ init_pygobject ();
+
+ m = Py_InitModule ("_sugarbrowser", py_sugarbrowser_functions);
+ d = PyModule_GetDict (m);
+
+ py_sugarbrowser_register_classes (d);
+ py_sugarbrowser_add_constants(m, "GTK_MOZ_EMBED_");
+
+ if (PyErr_Occurred ()) {
+ Py_FatalError ("can't initialise module _sugarbrowser");
+ }
+}