QEMU main repository: Please see https://www.qemu.org/docs/master/devel/submitting-a-patch.html for how to submit changes to QEMU. Pull Requests are ignored. Please only use release tarballs from the QEMU website. http://www.qemu.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
804 B
29 lines
804 B
#ifndef QEMU_CONFIG_H
|
|
#define QEMU_CONFIG_H
|
|
|
|
#include <stdio.h>
|
|
#include "qemu-option.h"
|
|
#include "error.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 */
|
|
|