From 100fe0b46babe8ba48193cf1fd6e520278e9afbd Mon Sep 17 00:00:00 2001 From: Adam Litke Date: Thu, 9 Jun 2011 12:10:07 -0500 Subject: 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 --- generator.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'generator.py') 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", } ####################################################################### -- cgit