mirror of
https://github.com/qemu/qemu.git
synced 2024-11-24 11:23:43 +08:00
9d993394a1
Add a function to write the QemuOpts configuration to a git-style config file. Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
16 lines
369 B
C
16 lines
369 B
C
#ifndef QEMU_CONFIG_H
|
|
#define QEMU_CONFIG_H
|
|
|
|
extern QemuOptsList qemu_drive_opts;
|
|
extern QemuOptsList qemu_chardev_opts;
|
|
extern QemuOptsList qemu_device_opts;
|
|
extern QemuOptsList qemu_netdev_opts;
|
|
extern QemuOptsList qemu_net_opts;
|
|
extern QemuOptsList qemu_rtc_opts;
|
|
|
|
int qemu_set_option(const char *str);
|
|
|
|
void qemu_config_write(FILE *fp);
|
|
|
|
#endif /* QEMU_CONFIG_H */
|