mirror of
https://gitlab.com/libvirt/libvirt-python.git
synced 2025-07-22 20:59:34 +03:00
Add virTypedParams* APIs
Working with virTypedParameters in clients written in C is ugly and requires all clients to duplicate the same code. This set of APIs makes this code for manipulating with virTypedParameters integral part of libvirt so that all clients may benefit from it.
This commit is contained in:
19
generator.py
19
generator.py
@ -527,6 +527,25 @@ skip_function = (
|
||||
"virNWFilterGetConnect",
|
||||
"virStoragePoolGetConnect",
|
||||
"virStorageVolGetConnect",
|
||||
|
||||
# only useful in C code, python code uses dict for typed parameters
|
||||
"virTypedParamsAddBoolean",
|
||||
"virTypedParamsAddDouble",
|
||||
"virTypedParamsAddFromString",
|
||||
"virTypedParamsAddInt",
|
||||
"virTypedParamsAddLLong",
|
||||
"virTypedParamsAddString",
|
||||
"virTypedParamsAddUInt",
|
||||
"virTypedParamsAddULLong",
|
||||
"virTypedParamsFree",
|
||||
"virTypedParamsGet",
|
||||
"virTypedParamsGetBoolean",
|
||||
"virTypedParamsGetDouble",
|
||||
"virTypedParamsGetInt",
|
||||
"virTypedParamsGetLLong",
|
||||
"virTypedParamsGetString",
|
||||
"virTypedParamsGetUInt",
|
||||
"virTypedParamsGetULLong",
|
||||
)
|
||||
|
||||
lxc_skip_function = (
|
||||
|
Reference in New Issue
Block a user