mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-06 13:20:20 +00:00
3ecb9e7631
Later on, we the qemu capabilities XML parsing code may come handy so instead of duplicating the code make the already existing one shared. By the same time, make the function accept file name instead of XML document stored already in memory. Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
14 lines
349 B
C
14 lines
349 B
C
#ifdef WITH_QEMU
|
|
|
|
# include "capabilities.h"
|
|
# include "domain_conf.h"
|
|
# include "qemu/qemu_command.h"
|
|
# include "qemu/qemu_capabilities.h"
|
|
|
|
virCapsPtr testQemuCapsInit(void);
|
|
virDomainXMLOptionPtr testQemuXMLConfInit(void);
|
|
extern qemuBuildCommandLineCallbacks testCallbacks;
|
|
|
|
virQEMUCapsPtr qemuTestParseCapabilities(const char *capsFile);
|
|
#endif
|