diff options
Diffstat (limited to 'python/wrap_objs.h')
-rw-r--r-- | python/wrap_objs.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/python/wrap_objs.h b/python/wrap_objs.h index 2812bb71..a74dfe86 100644 --- a/python/wrap_objs.h +++ b/python/wrap_objs.h @@ -47,7 +47,9 @@ typedef struct { /* Functions to wrap Python objects -> C objects */ #define PythonFile_get(v) (((v) == Py_None) ? NULL : (PyFile_Check(v) ? (PyFile_AsFile(v)) : stdout)) + xmlChar **PythonStringList_get(PyObject *list_obj); +GPtrArray *PythonStringList2_get(PyObject *list_obj); PyObject *wrap_int(int val); PyObject *wrap_charPtr(char *str); |