diff options
author | Kevin Wolf <kwolf@redhat.com> | 2010-03-05 17:25:55 +0100 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2010-04-23 16:08:45 +0200 |
commit | dcfb0939bd7042c9d2622181263c01d78531f272 (patch) | |
tree | 3ab9d835fb9c0af3cb4a288fddee36dacdb6d2d7 /qemu-config.h | |
parent | 6c557ab975fc8e5edb4167a241266c7c4657054a (diff) |
qemu-config: qemu_read_config_file() reads the normal config file
Introduce a new function qemu_read_config_file which reads the VM configuration
from a config file. Unlike qemu_config_parse it doesn't take a open file but a
filename and reduces code duplication as a side effect.
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'qemu-config.h')
-rw-r--r-- | qemu-config.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/qemu-config.h b/qemu-config.h index f217c589f7..07a7a2766f 100644 --- a/qemu-config.h +++ b/qemu-config.h @@ -19,4 +19,6 @@ void qemu_add_globals(void); void qemu_config_write(FILE *fp); int qemu_config_parse(FILE *fp, const char *fname); +int qemu_read_config_file(const char *filename); + #endif /* QEMU_CONFIG_H */ |