/* PyGtkSourceView2 - Python bindings for GtkSourceView2. Copyright (C) 2007 - Gian Mario Tagliaretti This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifdef HAVE_CONFIG_H #include "config.h" #endif #include #include void pygtksourceview2_register_classes (PyObject *d); void pygtksourceview2_add_constants(PyObject *module, const gchar *strip_prefix); extern PyMethodDef pygtksourceview2_functions[]; DL_EXPORT (void) initgtksourceview2 (void) { PyObject *m, *d; m = Py_InitModule ("gtksourceview2", pygtksourceview2_functions); d = PyModule_GetDict (m); init_pygobject (); init_pygtk (); pygtksourceview2_register_classes (d); pygtksourceview2_add_constants(m, "GTK_SOURCE_"); PyModule_AddObject(m, "pygtksourceview2_version", Py_BuildValue("iii", PYGTKSOURCEVIEW_MAJOR_VERSION, PYGTKSOURCEVIEW_MINOR_VERSION, PYGTKSOURCEVIEW_MICRO_VERSION)); if (PyErr_Occurred ()) Py_FatalError ("can't initialise module gtksourceview2"); }