sysbus: Add new platform bus helper device
[qemu.git] / include / qemu / typedefs.h
blob34751778a323745d38b2a5e87efe86c1d9269f1f
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 BlockBackend BlockBackend;
40 typedef struct BlockDriverState BlockDriverState;
41 typedef struct DriveInfo DriveInfo;
42 typedef struct DisplayState DisplayState;
43 typedef struct DisplayChangeListener DisplayChangeListener;
44 typedef struct DisplaySurface DisplaySurface;
45 typedef struct PixelFormat PixelFormat;
46 typedef struct QemuConsole QemuConsole;
47 typedef struct CharDriverState CharDriverState;
48 typedef struct MACAddr MACAddr;
49 typedef struct NetClientState NetClientState;
50 typedef struct I2CBus I2CBus;
51 typedef struct ISABus ISABus;
52 typedef struct ISADevice ISADevice;
53 typedef struct SMBusDevice SMBusDevice;
54 typedef struct PCIHostState PCIHostState;
55 typedef struct PCIExpressHost PCIExpressHost;
56 typedef struct PCIBus PCIBus;
57 typedef struct PCIDevice PCIDevice;
58 typedef struct PCIExpressDevice PCIExpressDevice;
59 typedef struct PCIBridge PCIBridge;
60 typedef struct PCIEAERMsg PCIEAERMsg;
61 typedef struct PCIEAERLog PCIEAERLog;
62 typedef struct PCIEAERErr PCIEAERErr;
63 typedef struct PCIEPort PCIEPort;
64 typedef struct PCIESlot PCIESlot;
65 typedef struct MSIMessage MSIMessage;
66 typedef struct SerialState SerialState;
67 typedef struct PCMCIACardState PCMCIACardState;
68 typedef struct MouseTransformInfo MouseTransformInfo;
69 typedef struct uWireSlave uWireSlave;
70 typedef struct I2SCodec I2SCodec;
71 typedef struct SSIBus SSIBus;
72 typedef struct EventNotifier EventNotifier;
73 typedef struct VirtIODevice VirtIODevice;
74 typedef struct QEMUSGList QEMUSGList;
75 typedef struct QEMUSizedBuffer QEMUSizedBuffer;
76 typedef struct SHPCDevice SHPCDevice;
77 typedef struct FWCfgState FWCfgState;
78 typedef struct PcGuestInfo PcGuestInfo;
79 typedef struct Range Range;
80 typedef struct AdapterInfo AdapterInfo;
82 #endif /* QEMU_TYPEDEFS_H */