You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
440 B
C

#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
/* include this first, before NO_IMPORT_PYGOBJECT is defined */
#include <pygobject.h>
extern PyMethodDef pygecko_functions[];
DL_EXPORT(void)
initgecko(void)
{
PyObject *m, *d;
init_pygobject ();
m = Py_InitModule ("gecko", pygecko_functions);
d = PyModule_GetDict (m);
if (PyErr_Occurred ()) {
Py_FatalError ("can't initialise module globalkeys");
}
}