diff options
author | Kevin Wolf <kwolf@redhat.com> | 2010-03-05 18:21:56 +0100 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2010-04-23 16:08:45 +0200 |
commit | 490b648e5b8987d4d497c222e0941a8b129a5eb6 (patch) | |
tree | 84347a944136de293bb16d073993fb23c3e965f5 /qemu-config.h | |
parent | dcfb0939bd7042c9d2622181263c01d78531f272 (diff) |
qemu-config: Make qemu_config_parse more generic
qemu_config_parse gets the option groups as a parameter now instead of
hardcoding the VM configuration groups. This way it can be used for other
configurations, too.
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'qemu-config.h')
-rw-r--r-- | qemu-config.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qemu-config.h b/qemu-config.h index 07a7a2766f..dd299c23d1 100644 --- a/qemu-config.h +++ b/qemu-config.h @@ -17,7 +17,7 @@ int qemu_global_option(const char *str); void qemu_add_globals(void); void qemu_config_write(FILE *fp); -int qemu_config_parse(FILE *fp, const char *fname); +int qemu_config_parse(FILE *fp, QemuOptsList **lists, const char *fname); int qemu_read_config_file(const char *filename); |