Mercurial > pidgin.yaz
view finch/libgnt/pygnt/gntmodule.c @ 16215:9d9ddc45c07b
merge of '28b9b747c33511754217017badcbdf3fa96ad1ee'
and 'e6059e2d9be3c263a9cb6406e2dab0119acf9e03'
author | William Ehlhardt <williamehlhardt@gmail.com> |
---|---|
date | Mon, 16 Apr 2007 23:19:38 +0000 |
parents | 8fd5ab3f9716 |
children | 6b16fca71f8b |
line wrap: on
line source
#include <pygobject.h> void gnt_register_classes (PyObject *d); extern PyMethodDef gnt_functions[]; DL_EXPORT(void) initgnt(void) { PyObject *m, *d; init_pygobject (); m = Py_InitModule ("gnt", gnt_functions); d = PyModule_GetDict (m); gnt_register_classes (d); if (PyErr_Occurred ()) { Py_FatalError ("can't initialise module sad"); } }