mirror of https://github.com/xemu-project/xemu.git
qemu-option: remove QemuOpt from typedefs.h
QemuOpt is basically an internal data structure. It has no business being defined except if you need functions from include/qemu/option.h. Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
2d3f409631
commit
0f73e49e37
|
@ -54,6 +54,8 @@ enum QemuOptType {
|
|||
QEMU_OPT_SIZE, /* size, accepts (K)ilo, (M)ega, (G)iga, (T)era postfix */
|
||||
};
|
||||
|
||||
typedef struct QemuOpt QemuOpt;
|
||||
|
||||
typedef struct QemuOptDesc {
|
||||
const char *name;
|
||||
enum QemuOptType type;
|
||||
|
|
|
@ -108,7 +108,6 @@ typedef struct QEMUCursor QEMUCursor;
|
|||
typedef struct QEMUFile QEMUFile;
|
||||
typedef struct QemuLockable QemuLockable;
|
||||
typedef struct QemuMutex QemuMutex;
|
||||
typedef struct QemuOpt QemuOpt;
|
||||
typedef struct QemuOpts QemuOpts;
|
||||
typedef struct QemuOptsList QemuOptsList;
|
||||
typedef struct QEMUSGList QEMUSGList;
|
||||
|
|
Loading…
Reference in New Issue