43 lines
1.2 KiB
C
43 lines
1.2 KiB
C
|
/*
|
||
|
* mooterm/mooterm-mod.c
|
||
|
*
|
||
|
* Copyright (C) 2004-2005 by Yevgen Muntyan <muntyan@math.tamu.edu>
|
||
|
*
|
||
|
* This program is free software; you can redistribute it and/or modify
|
||
|
* it under the terms of the GNU General Public License as published by
|
||
|
* the Free Software Foundation; either version 2 of the License, or
|
||
|
* (at your option) any later version.
|
||
|
*
|
||
|
* See COPYING file that comes with this distribution.
|
||
|
*/
|
||
|
|
||
|
#include <Python.h>
|
||
|
#define NO_IMPORT_PYGOBJECT
|
||
|
#include <pygobject.h>
|
||
|
#include <glib.h>
|
||
|
|
||
|
|
||
|
void moo_term_mod_init (PyObject *moo_mod);
|
||
|
void moo_term_register_classes (PyObject *dict);
|
||
|
void moo_term_add_constants (PyObject *module,
|
||
|
const gchar *strip_prefix);
|
||
|
|
||
|
|
||
|
extern PyMethodDef moo_term_functions[];
|
||
|
|
||
|
static char *moo_term_module_doc = (char*)"moo.term module.";
|
||
|
|
||
|
|
||
|
void moo_term_mod_init (PyObject *moo_mod)
|
||
|
{
|
||
|
PyObject *mod;
|
||
|
|
||
|
mod = Py_InitModule3 ("moo.term", moo_term_functions, moo_term_module_doc);
|
||
|
g_return_if_fail (mod != NULL);
|
||
|
Py_INCREF (mod);
|
||
|
PyModule_AddObject (moo_mod, "term", mod);
|
||
|
// moo_term_add_constants (mod, "MOO_");
|
||
|
|
||
|
moo_term_register_classes (PyModule_GetDict (moo_mod));
|
||
|
}
|