mirror of
https://gitlab.com/libvirt/libvirt-python.git
synced 2025-07-24 00:58:54 +03:00
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>
This commit is contained in:
@ -184,6 +184,8 @@ def enum(type, name, value):
|
|||||||
functions_failed = []
|
functions_failed = []
|
||||||
functions_skipped = [
|
functions_skipped = [
|
||||||
"virConnectListDomains",
|
"virConnectListDomains",
|
||||||
|
'virDomainBlockPull',
|
||||||
|
'virDomainGetBlockPullInfo',
|
||||||
]
|
]
|
||||||
|
|
||||||
skipped_modules = {
|
skipped_modules = {
|
||||||
@ -198,6 +200,7 @@ skipped_types = {
|
|||||||
'virConnectDomainEventIOErrorCallback': "No function types in python",
|
'virConnectDomainEventIOErrorCallback': "No function types in python",
|
||||||
'virConnectDomainEventGraphicsCallback': "No function types in python",
|
'virConnectDomainEventGraphicsCallback': "No function types in python",
|
||||||
'virEventAddHandleFunc': "No function types in python",
|
'virEventAddHandleFunc': "No function types in python",
|
||||||
|
'virDomainBlockPullInfoPtr': "Not implemented yet",
|
||||||
}
|
}
|
||||||
|
|
||||||
#######################################################################
|
#######################################################################
|
||||||
|
Reference in New Issue
Block a user