QEMUSizedBuffer based QEMUFile
[qemu/ar7.git] / include / qemu / typedefs.h
blob168a4086d80b541357c2692e353708a7263617fe
1 #ifndef QEMU_TYPEDEFS_H
2 #define QEMU_TYPEDEFS_H
4 /* A load of opaque types so that device init declarations don't have to
5 pull in all the real definitions. */
6 typedef struct QEMUTimer QEMUTimer;
7 typedef struct QEMUTimerListGroup QEMUTimerListGroup;
8 typedef struct QEMUFile QEMUFile;
9 typedef struct QEMUBH QEMUBH;
11 typedef struct AioContext AioContext;
13 typedef struct Visitor Visitor;
15 struct Monitor;
16 typedef struct Monitor Monitor;
17 typedef struct MigrationParams MigrationParams;
19 typedef struct Property Property;
20 typedef struct PropertyInfo PropertyInfo;
21 typedef struct CompatProperty CompatProperty;
22 typedef struct DeviceState DeviceState;
23 typedef struct BusState BusState;
24 typedef struct BusClass BusClass;
26 typedef struct AddressSpace AddressSpace;
27 typedef struct MemoryRegion MemoryRegion;
28 typedef struct MemoryRegionSection MemoryRegionSection;
29 typedef struct MemoryListener MemoryListener;
31 typedef struct MemoryMappingList MemoryMappingList;
33 typedef struct QEMUMachine QEMUMachine;
34 typedef struct MachineClass MachineClass;
35 typedef struct MachineState MachineState;
36 typedef struct NICInfo NICInfo;
37 typedef struct HCIInfo HCIInfo;
38 typedef struct AudioState AudioState;
39 typedef struct BlockDriverState BlockDriverState;
40 typedef struct DriveInfo DriveInfo;
41 typedef struct DisplayState DisplayState;
42 typedef struct DisplayChangeListener DisplayChangeListener;
43 typedef struct DisplaySurface DisplaySurface;
44 typedef struct PixelFormat PixelFormat;
45 typedef struct QemuConsole QemuConsole;
46 typedef struct CharDriverState CharDriverState;
47 typedef struct MACAddr MACAddr;
48 typedef struct NetClientState NetClientState;
49 typedef struct I2CBus I2CBus;
50 typedef struct ISABus ISABus;
51 typedef struct ISADevice ISADevice;
52 typedef struct SMBusDevice SMBusDevice;
53 typedef struct PCIHostState PCIHostState;
54 typedef struct PCIExpressHost PCIExpressHost;
55 typedef struct PCIBus PCIBus;
56 typedef struct PCIDevice PCIDevice;
57 typedef struct PCIExpressDevice PCIExpressDevice;
58 typedef struct PCIBridge PCIBridge;
59 typedef struct PCIEAERMsg PCIEAERMsg;
60 typedef struct PCIEAERLog PCIEAERLog;
61 typedef struct PCIEAERErr PCIEAERErr;
62 typedef struct PCIEPort PCIEPort;
63 typedef struct PCIESlot PCIESlot;
64 typedef struct MSIMessage MSIMessage;
65 typedef struct SerialState SerialState;
66 typedef struct PCMCIACardState PCMCIACardState;
67 typedef struct MouseTransformInfo MouseTransformInfo;
68 typedef struct uWireSlave uWireSlave;
69 typedef struct I2SCodec I2SCodec;
70 typedef struct SSIBus SSIBus;
71 typedef struct EventNotifier EventNotifier;
72 typedef struct VirtIODevice VirtIODevice;
73 typedef struct QEMUSGList QEMUSGList;
74 typedef struct QEMUSizedBuffer QEMUSizedBuffer;
75 typedef struct SHPCDevice SHPCDevice;
76 typedef struct FWCfgState FWCfgState;
77 typedef struct PcGuestInfo PcGuestInfo;
78 typedef struct Range Range;
79 typedef struct AdapterInfo AdapterInfo;
81 #endif /* QEMU_TYPEDEFS_H */