summaryrefslogtreecommitdiff
path: root/typewrappers.c
diff options
context:
space:
mode:
Diffstat (limited to 'typewrappers.c')
-rw-r--r--typewrappers.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/typewrappers.c b/typewrappers.c
index 5710744..2507859 100644
--- a/typewrappers.c
+++ b/typewrappers.c
@@ -582,6 +582,19 @@ libvirt_virStreamPtrWrap(virStreamPtr node)
}
PyObject *
+libvirt_virDomainCheckpointPtrWrap(virDomainCheckpointPtr node)
+{
+ PyObject *ret;
+
+ if (node == NULL) {
+ return VIR_PY_NONE;
+ }
+
+ ret = libvirt_buildPyObject(node, "virDomainCheckpointPtr", NULL);
+ return ret;
+}
+
+PyObject *
libvirt_virDomainSnapshotPtrWrap(virDomainSnapshotPtr node)
{
PyObject *ret;