sugar-toolkit-gtk3/lib/python/_sugarmodule.c

37 lines
650 B
C
Raw Normal View History

2006-09-26 21:58:54 +02:00
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "xulrunner.h"
2006-09-26 21:58:54 +02:00
/* include this first, before NO_IMPORT_PYGOBJECT is defined */
#include <pygobject.h>
#include <pycairo.h>
Pycairo_CAPI_t *Pycairo_CAPI;
void py_sugar_register_classes (PyObject *d);
extern PyMethodDef py_sugar_functions[];
2006-09-26 21:58:54 +02:00
DL_EXPORT(void)
init_sugar(void)
2006-09-26 21:58:54 +02:00
{
PyObject *m, *d;
xulrunner_startup();
2006-09-26 21:58:54 +02:00
init_pygobject ();
Pycairo_IMPORT;
m = Py_InitModule ("_sugar", py_sugar_functions);
2006-09-26 21:58:54 +02:00
d = PyModule_GetDict (m);
py_sugar_register_classes (d);
2006-09-26 21:58:54 +02:00
if (PyErr_Occurred ()) {
Py_FatalError ("can't initialise module globalkeys");
}
}