mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-03-07 17:28:15 +00:00
Internal API
Definition of internal API for virDomain{Attach,Detach}DeviceFlags.
This commit is contained in:
parent
314190a0ad
commit
79ad308781
10
src/driver.h
10
src/driver.h
@ -191,9 +191,17 @@ typedef int
|
|||||||
typedef int
|
typedef int
|
||||||
(*virDrvDomainAttachDevice) (virDomainPtr domain,
|
(*virDrvDomainAttachDevice) (virDomainPtr domain,
|
||||||
const char *xml);
|
const char *xml);
|
||||||
|
typedef int
|
||||||
|
(*virDrvDomainAttachDeviceFlags) (virDomainPtr domain,
|
||||||
|
const char *xml,
|
||||||
|
unsigned int flags);
|
||||||
typedef int
|
typedef int
|
||||||
(*virDrvDomainDetachDevice) (virDomainPtr domain,
|
(*virDrvDomainDetachDevice) (virDomainPtr domain,
|
||||||
const char *xml);
|
const char *xml);
|
||||||
|
typedef int
|
||||||
|
(*virDrvDomainDetachDeviceFlags) (virDomainPtr domain,
|
||||||
|
const char *xml,
|
||||||
|
unsigned int flags);
|
||||||
typedef int
|
typedef int
|
||||||
(*virDrvDomainGetAutostart) (virDomainPtr domain,
|
(*virDrvDomainGetAutostart) (virDomainPtr domain,
|
||||||
int *autostart);
|
int *autostart);
|
||||||
@ -419,7 +427,9 @@ struct _virDriver {
|
|||||||
virDrvDomainDefineXML domainDefineXML;
|
virDrvDomainDefineXML domainDefineXML;
|
||||||
virDrvDomainUndefine domainUndefine;
|
virDrvDomainUndefine domainUndefine;
|
||||||
virDrvDomainAttachDevice domainAttachDevice;
|
virDrvDomainAttachDevice domainAttachDevice;
|
||||||
|
virDrvDomainAttachDeviceFlags domainAttachDeviceFlags;
|
||||||
virDrvDomainDetachDevice domainDetachDevice;
|
virDrvDomainDetachDevice domainDetachDevice;
|
||||||
|
virDrvDomainDetachDeviceFlags domainDetachDeviceFlags;
|
||||||
virDrvDomainGetAutostart domainGetAutostart;
|
virDrvDomainGetAutostart domainGetAutostart;
|
||||||
virDrvDomainSetAutostart domainSetAutostart;
|
virDrvDomainSetAutostart domainSetAutostart;
|
||||||
virDrvDomainGetSchedulerType domainGetSchedulerType;
|
virDrvDomainGetSchedulerType domainGetSchedulerType;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user