sugar-toolkit-gtk3/shell/extensions/_extensionsmodule.c

28 lines
553 B
C
Raw Normal View History

#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
/* include this first, before NO_IMPORT_PYGOBJECT is defined */
#include <pygobject.h>
2007-04-15 12:16:06 +02:00
void py_extensions_register_classes (PyObject *d);
2007-04-15 12:16:06 +02:00
extern PyMethodDef py_extensions_functions[];
DL_EXPORT(void)
2007-04-15 12:16:06 +02:00
init_extensions(void)
{
PyObject *m, *d;
init_pygobject ();
2007-04-15 12:16:06 +02:00
m = Py_InitModule ("_extensions", py_extensions_functions);
d = PyModule_GetDict (m);
2007-04-15 12:16:06 +02:00
py_extensions_register_classes (d);
if (PyErr_Occurred ()) {
Py_FatalError ("can't initialise module _sugar");
}
}