summaryrefslogtreecommitdiffstats
path: root/types.c
diff options
context:
space:
mode:
Diffstat (limited to 'types.c')
-rw-r--r--types.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/types.c b/types.c
index 1f71198..3015c1d 100644
--- a/types.c
+++ b/types.c
@@ -34,6 +34,18 @@ libvir_longWrap(long val)
}
PyObject *
+libvir_longlongWrap(long long val)
+{
+ PyObject *ret;
+
+#ifdef DEBUG
+ printf("libvir_longWrap: val = %ld\n", val);
+#endif
+ ret = PyLong_FromUnsignedLongLong((unsigned long long) val);
+ return (ret);
+}
+
+PyObject *
libvir_charPtrWrap(char *str)
{
PyObject *ret;