mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-11 03:24:58 -06:00
misc: move include files to include/qemu/
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
14cccb6185
commit
1de7afc984
496 changed files with 673 additions and 673 deletions
30
include/qemu/config-file.h
Normal file
30
include/qemu/config-file.h
Normal file
|
@ -0,0 +1,30 @@
|
|||
#ifndef QEMU_CONFIG_H
|
||||
#define QEMU_CONFIG_H
|
||||
|
||||
#include <stdio.h>
|
||||
#include "qemu/option.h"
|
||||
#include "qapi/error.h"
|
||||
#include "qemu/option.h"
|
||||
|
||||
extern QemuOptsList qemu_fsdev_opts;
|
||||
extern QemuOptsList qemu_virtfs_opts;
|
||||
extern QemuOptsList qemu_spice_opts;
|
||||
extern QemuOptsList qemu_sandbox_opts;
|
||||
|
||||
QemuOptsList *qemu_find_opts(const char *group);
|
||||
QemuOptsList *qemu_find_opts_err(const char *group, Error **errp);
|
||||
void qemu_add_opts(QemuOptsList *list);
|
||||
int qemu_set_option(const char *str);
|
||||
int qemu_global_option(const char *str);
|
||||
void qemu_add_globals(void);
|
||||
|
||||
void qemu_config_write(FILE *fp);
|
||||
int qemu_config_parse(FILE *fp, QemuOptsList **lists, const char *fname);
|
||||
|
||||
int qemu_read_config_file(const char *filename);
|
||||
|
||||
/* Read default QEMU config files
|
||||
*/
|
||||
int qemu_read_default_config_files(bool userconfig);
|
||||
|
||||
#endif /* QEMU_CONFIG_H */
|
Loading…
Add table
Add a link
Reference in a new issue