view finch/libgnt/pygnt/gntmodule.c @ 16398:eca698c354d0

RC4 support in cipher.c - patch from Nathan Peterson (uvwarning) See: https://sourceforge.net/tracker/?func=detail&atid=300235&aid=1694487&group_id=235
author Jeffrey Connelly <jaconnel@calpoly.edu>
date Wed, 25 Apr 2007 03:14:11 +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");
    }
}