2012-10-24 01:41:52 +02:00
|
|
|
#ifndef QEMU_TYPEDEFS_H
|
|
|
|
#define QEMU_TYPEDEFS_H
|
|
|
|
|
|
|
|
/* A load of opaque types so that device init declarations don't have to
|
|
|
|
pull in all the real definitions. */
|
|
|
|
typedef struct QEMUTimer QEMUTimer;
|
2013-08-21 17:02:48 +02:00
|
|
|
typedef struct QEMUTimerListGroup QEMUTimerListGroup;
|
2012-10-24 01:41:52 +02:00
|
|
|
typedef struct QEMUFile QEMUFile;
|
|
|
|
typedef struct QEMUBH QEMUBH;
|
|
|
|
|
2013-08-21 17:02:47 +02:00
|
|
|
typedef struct AioContext AioContext;
|
|
|
|
|
2013-12-20 23:21:10 +01:00
|
|
|
typedef struct Visitor Visitor;
|
|
|
|
|
2012-10-24 01:41:52 +02:00
|
|
|
struct Monitor;
|
|
|
|
typedef struct Monitor Monitor;
|
|
|
|
typedef struct MigrationParams MigrationParams;
|
|
|
|
|
|
|
|
typedef struct Property Property;
|
|
|
|
typedef struct PropertyInfo PropertyInfo;
|
|
|
|
typedef struct CompatProperty CompatProperty;
|
|
|
|
typedef struct DeviceState DeviceState;
|
|
|
|
typedef struct BusState BusState;
|
|
|
|
typedef struct BusClass BusClass;
|
|
|
|
|
2013-04-09 11:10:27 +02:00
|
|
|
typedef struct AddressSpace AddressSpace;
|
|
|
|
typedef struct MemoryRegion MemoryRegion;
|
|
|
|
typedef struct MemoryRegionSection MemoryRegionSection;
|
2013-11-21 18:36:42 +01:00
|
|
|
typedef struct MemoryListener MemoryListener;
|
2013-04-09 11:10:27 +02:00
|
|
|
|
2013-05-28 14:20:15 +02:00
|
|
|
typedef struct MemoryMappingList MemoryMappingList;
|
|
|
|
|
2014-03-13 03:40:13 +01:00
|
|
|
typedef struct QEMUMachine QEMUMachine;
|
2014-04-09 19:34:52 +02:00
|
|
|
typedef struct MachineClass MachineClass;
|
2012-10-24 01:41:52 +02:00
|
|
|
typedef struct NICInfo NICInfo;
|
|
|
|
typedef struct HCIInfo HCIInfo;
|
|
|
|
typedef struct AudioState AudioState;
|
|
|
|
typedef struct BlockDriverState BlockDriverState;
|
|
|
|
typedef struct DriveInfo DriveInfo;
|
|
|
|
typedef struct DisplayState DisplayState;
|
|
|
|
typedef struct DisplayChangeListener DisplayChangeListener;
|
|
|
|
typedef struct DisplaySurface DisplaySurface;
|
|
|
|
typedef struct PixelFormat PixelFormat;
|
|
|
|
typedef struct QemuConsole QemuConsole;
|
|
|
|
typedef struct CharDriverState CharDriverState;
|
|
|
|
typedef struct MACAddr MACAddr;
|
|
|
|
typedef struct NetClientState NetClientState;
|
2013-08-03 00:18:51 +02:00
|
|
|
typedef struct I2CBus I2CBus;
|
2012-10-24 01:41:52 +02:00
|
|
|
typedef struct ISABus ISABus;
|
|
|
|
typedef struct ISADevice ISADevice;
|
|
|
|
typedef struct SMBusDevice SMBusDevice;
|
|
|
|
typedef struct PCIHostState PCIHostState;
|
|
|
|
typedef struct PCIExpressHost PCIExpressHost;
|
|
|
|
typedef struct PCIBus PCIBus;
|
|
|
|
typedef struct PCIDevice PCIDevice;
|
|
|
|
typedef struct PCIExpressDevice PCIExpressDevice;
|
|
|
|
typedef struct PCIBridge PCIBridge;
|
|
|
|
typedef struct PCIEAERMsg PCIEAERMsg;
|
|
|
|
typedef struct PCIEAERLog PCIEAERLog;
|
|
|
|
typedef struct PCIEAERErr PCIEAERErr;
|
|
|
|
typedef struct PCIEPort PCIEPort;
|
|
|
|
typedef struct PCIESlot PCIESlot;
|
|
|
|
typedef struct MSIMessage MSIMessage;
|
|
|
|
typedef struct SerialState SerialState;
|
|
|
|
typedef struct PCMCIACardState PCMCIACardState;
|
|
|
|
typedef struct MouseTransformInfo MouseTransformInfo;
|
|
|
|
typedef struct uWireSlave uWireSlave;
|
|
|
|
typedef struct I2SCodec I2SCodec;
|
|
|
|
typedef struct SSIBus SSIBus;
|
|
|
|
typedef struct EventNotifier EventNotifier;
|
|
|
|
typedef struct VirtIODevice VirtIODevice;
|
|
|
|
typedef struct QEMUSGList QEMUSGList;
|
|
|
|
typedef struct SHPCDevice SHPCDevice;
|
2013-05-13 15:27:06 +02:00
|
|
|
typedef struct FWCfgState FWCfgState;
|
2013-05-30 11:57:26 +02:00
|
|
|
typedef struct PcGuestInfo PcGuestInfo;
|
2013-09-02 10:41:37 +02:00
|
|
|
typedef struct Range Range;
|
2013-07-15 17:45:03 +02:00
|
|
|
typedef struct AdapterInfo AdapterInfo;
|
2012-10-24 01:41:52 +02:00
|
|
|
|
|
|
|
#endif /* QEMU_TYPEDEFS_H */
|