summaryrefslogtreecommitdiffstats
path: root/libvirt_wrap.h
diff options
context:
space:
mode:
authorDaniel Veillard <veillard@redhat.com>2006-02-09 17:45:11 +0000
committerDaniel Veillard <veillard@redhat.com>2006-02-09 17:45:11 +0000
commit1d8b52d81d55c3591b887364a6c5723ef4fd5197 (patch)
treeb0a2a779345c8a2eab671f79e4da602a04859d5b /libvirt_wrap.h
parentfb54944e588be376fcd3fc9e01d8592a86731c41 (diff)
downloadlibvirt-python-split-1d8b52d81d55c3591b887364a6c5723ef4fd5197.tar.gz
libvirt-python-split-1d8b52d81d55c3591b887364a6c5723ef4fd5197.tar.xz
libvirt-python-split-1d8b52d81d55c3591b887364a6c5723ef4fd5197.zip
* //* : renamed the project libvirt , this affects all makefiles,v0.0.3
the specs, the icons, the docs, etc ... * configure.in: prepare for 0.0.3 Daniel
Diffstat (limited to 'libvirt_wrap.h')
-rw-r--r--libvirt_wrap.h49
1 files changed, 49 insertions, 0 deletions
diff --git a/libvirt_wrap.h b/libvirt_wrap.h
new file mode 100644
index 0000000..5d1d3e3
--- /dev/null
+++ b/libvirt_wrap.h
@@ -0,0 +1,49 @@
+/*
+ * libvirt_wrap.h: type wrappers for libvir python bindings
+ *
+ * Copyright (C) 2005 Red Hat, Inc.
+ *
+ * Daniel Veillard <veillard@redhat.com>
+ */
+
+#include <Python.h>
+#include <libvirt.h>
+
+#ifdef __GNUC__
+#ifdef ATTRIBUTE_UNUSED
+#undef ATTRIBUTE_UNUSED
+#endif
+#ifndef ATTRIBUTE_UNUSED
+#define ATTRIBUTE_UNUSED __attribute__ ((__unused__))
+#endif /* ATTRIBUTE_UNUSED */
+#else
+#define ATTRIBUTE_UNUSED
+#endif
+
+#define PyvirConnect_Get(v) (((v) == Py_None) ? NULL : \
+ (((PyvirConnect_Object *)(v))->obj))
+
+typedef struct {
+ PyObject_HEAD
+ virConnectPtr obj;
+} PyvirConnect_Object;
+
+
+#define PyvirDomain_Get(v) (((v) == Py_None) ? NULL : \
+ (((PyvirDomain_Object *)(v))->obj))
+
+typedef struct {
+ PyObject_HEAD
+ virDomainPtr obj;
+} PyvirDomain_Object;
+
+
+PyObject * libvirt_intWrap(int val);
+PyObject * libvirt_longWrap(long val);
+PyObject * libvirt_longlongWrap(long long val);
+PyObject * libvirt_charPtrWrap(char *str);
+PyObject * libvirt_constcharPtrWrap(const char *str);
+PyObject * libvirt_charPtrConstWrap(const char *str);
+PyObject * libvirt_virConnectPtrWrap(virConnectPtr node);
+PyObject * libvirt_virDomainPtrWrap(virDomainPtr node);
+