remove config.lt when issuing make clean target
[pywebkitgtk.git] / javascriptcore / javascriptcore_types.c
blob3e4f85f6c100191fd29313c546a5b8b3f98b72f7
1 /* PyWebKitGtk - Python bindings to WebKit/GTK+
3 * Copyright (C) 2009 Jan Michael Alonzo <jmalonzo@gmail.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);