Improve the demo browser
[pywebkitgtk.git] / javascriptcore / javascriptcore_types.c
blob1d2980c138369e3f8f333ff94f932a3f90274c3c
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);
38 PyObject* wrap_JSContextRef(JSContextRef jsglobalref)
40 PyObject *ret;
42 if (jsglobalref == NULL) {
43 Py_INCREF (Py_None);
44 return (Py_None);
47 ret = PyCObject_FromVoidPtrAndDesc ((void *) jsglobalref, (char *)
48 "JSContextRef", NULL);
49 return (ret);
52 #ifdef HAVE_GJS
53 PyObject* wrap_GjsValue(GjsValue *value)
55 PyObject *ret;
57 if (value == NULL) {
58 Py_INCREF (Py_None);
59 return (Py_None);
62 ret = PyCObject_FromVoidPtrAndDesc ((void *) value, (char *)
63 "GjsValue", NULL);
64 return (ret);
66 #endif