summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Litke <agl@us.ibm.com>2011-07-22 13:18:06 +0800
committerDaniel Veillard <veillard@redhat.com>2011-07-22 13:18:06 +0800
commit152e810388e82265b2ee219648eb52cd22aed926 (patch)
tree0eb3af053afd0ba349506809b9f4bb6d3ec4ec3f /python/generator.py
parentsave: add virsh commands for manipulating save files (diff)
downloadlibvirt-152e810388e82265b2ee219648eb52cd22aed926.tar.gz
libvirt-152e810388e82265b2ee219648eb52cd22aed926.tar.bz2
libvirt-152e810388e82265b2ee219648eb52cd22aed926.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 * docs/apibuild.py: Extend 'unsigned long' parameter exception to this * API
Diffstat (limited to 'python/generator.py')
-rwxr-xr-xpython/generator.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/python/generator.py b/python/generator.py
index 1cb82f5ce..b25c74ee0 100755
--- a/python/generator.py
+++ b/python/generator.py
@@ -186,6 +186,7 @@ def enum(type, name, value):
functions_failed = []
functions_skipped = [
"virConnectListDomains",
+ 'virDomainGetBlockJobInfo',
]
skipped_modules = {
@@ -202,6 +203,7 @@ skipped_types = {
'virStreamEventCallback': "No function types in python",
'virEventHandleCallback': "No function types in python",
'virEventTimeoutCallback': "No function types in python",
+ 'virDomainBlockJobInfoPtr': "Not implemented yet",
}
#######################################################################