merged tuukkah's changes; added constructor functions in .defs
[pywebkitgtk.git] / webkitgtkmodule.c
blobc90519095e6c8aab4f0fa78642996b8ffe86c020
1 /*
2 * Copyright (C) 2006-2007, Red Hat, Inc.
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the
16 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 * Boston, MA 02111-1307, USA.
19 #include <Python.h>
20 #ifdef HAVE_CONFIG_H
21 #include "config.h"
22 #endif
24 /* include this first, before NO_IMPORT_PYGOBJECT is defined */
25 #include <pygobject.h>
27 extern PyMethodDef pywebkitgtk_functions[];
29 void pywebkitgtk_register_classes (PyObject *d);
31 DL_EXPORT(void)
32 initwebkitgtk(void)
34 PyObject *m, *d;
36 init_pygobject ();
38 m = Py_InitModule ("webkitgtk", pywebkitgtk_functions);
39 d = PyModule_GetDict (m);
41 pywebkitgtk_register_classes (d);
43 if (PyErr_Occurred ()) {
44 Py_FatalError ("can't initialise module webkitgtk");