summaryrefslogtreecommitdiffstats
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
commit384d3ae35bb6c4ee90730bd273922447700bea82 (patch)
tree3fa9b0fde7d365ddd2f7d3daa13d87ce6df34089
parent13e6b5780dcd7c2e0305f370ea1f0e541fa3e313 (diff)
downloadlibvirt-python-split-384d3ae35bb6c4ee90730bd273922447700bea82.tar.gz
libvirt-python-split-384d3ae35bb6c4ee90730bd273922447700bea82.tar.xz
libvirt-python-split-384d3ae35bb6c4ee90730bd273922447700bea82.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
-rwxr-xr-xgenerator.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/generator.py b/generator.py
index 1cb82f5..b25c74e 100755
--- a/generator.py
+++ b/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",
}
#######################################################################