summaryrefslogtreecommitdiff
path: root/gnome-2-26/python/pyempathygtk/pyempathygtkmodule.c
blob: 20e09e3f36f1465e6d0a148dfc4be69e02bd007c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#define NO_IMPORT_PYGOBJECT

#include <pygobject.h>

void empathy_register_classes (PyObject *d);
void empathy_add_constants(PyObject *module, const gchar *strip_prefix);
DL_EXPORT(void) initempathygtk(void);
extern PyMethodDef empathy_functions[];

DL_EXPORT(void) initempathygtk(void)
{
	PyObject *m, *d;

	init_pygobject ();
	
	m = Py_InitModule ("empathygtk", empathy_functions);
	d = PyModule_GetDict (m);
	
	empathy_register_classes (d);
	empathy_add_constants(m, "EMPATHY_");
	
	if (PyErr_Occurred ()) {
		PyErr_Print();
		Py_FatalError ("can't initialise module empathygtk");
	}
}