1
0
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:
Jim Fehlig 2010-01-13 18:31:14 -07:00
parent 314190a0ad
commit 79ad308781

View File

@ -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;