diff options
Diffstat (limited to 'qemu-option.h')
-rw-r--r-- | qemu-option.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/qemu-option.h b/qemu-option.h index e9fbbb56b6..c0e022bf40 100644 --- a/qemu-option.h +++ b/qemu-option.h @@ -111,6 +111,8 @@ bool qemu_opt_get_bool(QemuOpts *opts, const char *name, bool defval); uint64_t qemu_opt_get_number(QemuOpts *opts, const char *name, uint64_t defval); uint64_t qemu_opt_get_size(QemuOpts *opts, const char *name, uint64_t defval); int qemu_opt_set(QemuOpts *opts, const char *name, const char *value); +void qemu_opt_set_err(QemuOpts *opts, const char *name, const char *value, + Error **errp); int qemu_opt_set_bool(QemuOpts *opts, const char *name, bool val); typedef int (*qemu_opt_loopfunc)(const char *name, const char *value, void *opaque); int qemu_opt_foreach(QemuOpts *opts, qemu_opt_loopfunc func, void *opaque, |