finch/libgnt/pygnt/gntmodule.c

Mon, 26 Mar 2007 04:19:35 +0000

author
Sadrul Habib Chowdhury <sadrul@pidgin.im>
date
Mon, 26 Mar 2007 04:19:35 +0000
changeset 15992
76e7972b3ff9
child 19173
467db4a9cc44
permissions
-rw-r--r--

python bindings for libgnt. dbus-gnt is a gnt-ui (sort of) for gaim over dbus. It allows continuing with the currently opened conversations. pygnt/README.txt explains what to do. Use at your own risk.

#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");
    }
}

mercurial