diff options
Diffstat (limited to 'qemu-common.h')
-rw-r--r-- | qemu-common.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/qemu-common.h b/qemu-common.h index ae334421e..2dcb224ea 100644 --- a/qemu-common.h +++ b/qemu-common.h @@ -23,6 +23,7 @@ #include <unistd.h> #include <fcntl.h> #include <sys/stat.h> +#include <assert.h> #include "config-host.h" #ifndef O_LARGEFILE @@ -177,7 +178,12 @@ typedef struct PCIBus PCIBus; typedef struct PCIDevice PCIDevice; typedef struct SerialState SerialState; typedef struct IRQState *qemu_irq; -struct pcmcia_card_s; +typedef struct PCMCIACardState PCMCIACardState; +typedef struct MouseTransformInfo MouseTransformInfo; +typedef struct uWireSlave uWireSlave; +typedef struct I2SCodec I2SCodec; +typedef struct DeviceState DeviceState; +typedef struct SSIBus SSIBus; /* CPU save/load. */ void cpu_save(QEMUFile *f, void *opaque); @@ -225,6 +231,8 @@ void qemu_iovec_from_buffer(QEMUIOVector *qiov, const void *buf, size_t count); struct Monitor; typedef struct Monitor Monitor; +#include "module.h" + #endif /* dyngen-exec.h hack */ #endif |