blob: 1180313661446b97a8a96763b43aee98ee4bcd7b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#include <pygobject.h>
void empathy_register_classes (PyObject *d);
DL_EXPORT(void) initempathy(void);
extern PyMethodDef empathy_functions[];
DL_EXPORT(void)
initempathy(void)
{
PyObject *m, *d;
init_pygobject ();
m = Py_InitModule ("empathy", empathy_functions);
d = PyModule_GetDict (m);
empathy_register_classes (d);
if (PyErr_Occurred ()) {
PyErr_Print();
Py_FatalError ("can't initialise module empathy");
}
}
|