fix demo webbrowser
[pywebkitgtk.git] / javascriptcore-types.c
blob7019bdbb281073fa91502f198a6fe20e735fa453
1 /* PyWebKitGtk - Python bindings to WebKit/GTK+
3 * Copyright (C) 2007 Jan Michael Alonzo <jmalonzo@unpluggable.com>
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Library General Public License for more details.
15 * You should have received a copy of the GNU Library General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301 USA
20 #include "javascriptcore-types.h"
22 /** functions to wrap C objects -> Python Objects */
24 PyObject* wrap_JSGlobalContextRef(JSGlobalContextRef jsglobalref)
26 PyObject *ret;
28 if (jsglobalref == NULL) {
29 Py_INCREF (Py_None);
30 return (Py_None);
33 ret = PyCObject_FromVoidPtrAndDesc ((void *) jsglobalref, (char *)
34 "JSGlobalContextRef", NULL);
35 return (ret);