summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdam Litke <agl@us.ibm.com>2011-06-09 12:10:07 -0500
committerEric Blake <eblake@redhat.com>2011-06-14 21:20:11 -0600
commit100fe0b46babe8ba48193cf1fd6e520278e9afbd (patch)
treec2b3ce8636ffb9ecbcbe31b9c98998d12f2efe2a
parent9d628a8590145dc536963cf2e59c5ee52cb83261 (diff)
downloadlibvirt-python-split-100fe0b46babe8ba48193cf1fd6e520278e9afbd.tar.gz
libvirt-python-split-100fe0b46babe8ba48193cf1fd6e520278e9afbd.tar.xz
libvirt-python-split-100fe0b46babe8ba48193cf1fd6e520278e9afbd.zip
Add new API virDomainBlockPull* to headers
Set up the types for the block pull functions and insert them into the virDriver structure definition. Symbols are exported in this patch to prevent documentation compile failures. * include/libvirt/libvirt.h.in: new API * src/driver.h: add the new entry to the driver structure * python/generator.py: fix compiler errors, the actual python bindings are implemented later * src/libvirt_public.syms: export symbols Signed-off-by: Adam Litke <agl@us.ibm.com>
-rwxr-xr-xgenerator.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/generator.py b/generator.py
index a14b9ce..5868992 100755
--- a/generator.py
+++ b/generator.py
@@ -184,6 +184,8 @@ def enum(type, name, value):
functions_failed = []
functions_skipped = [
"virConnectListDomains",
+ 'virDomainBlockPull',
+ 'virDomainGetBlockPullInfo',
]
skipped_modules = {
@@ -198,6 +200,7 @@ skipped_types = {
'virConnectDomainEventIOErrorCallback': "No function types in python",
'virConnectDomainEventGraphicsCallback': "No function types in python",
'virEventAddHandleFunc': "No function types in python",
+ 'virDomainBlockPullInfoPtr': "Not implemented yet",
}
#######################################################################