]>
Commit | Line | Data |
---|---|---|
394e1bb7 EH |
1 | #ifndef QEMU_TYPEDEFS_H |
2 | #define QEMU_TYPEDEFS_H | |
3 | ||
4 | /* A load of opaque types so that device init declarations don't have to | |
5 | pull in all the real definitions. */ | |
394e1bb7 | 6 | struct Monitor; |
394e1bb7 | 7 | |
64baadc2 DDAG |
8 | /* Please keep this list in alphabetical order */ |
9 | typedef struct AdapterInfo AdapterInfo; | |
b421d9c6 | 10 | typedef struct AddressSpace AddressSpace; |
64baadc2 | 11 | typedef struct AioContext AioContext; |
394e1bb7 | 12 | typedef struct AudioState AudioState; |
26f54e9a | 13 | typedef struct BlockBackend BlockBackend; |
394e1bb7 | 14 | typedef struct BlockDriverState BlockDriverState; |
64baadc2 DDAG |
15 | typedef struct BusClass BusClass; |
16 | typedef struct BusState BusState; | |
17 | typedef struct CharDriverState CharDriverState; | |
18 | typedef struct CompatProperty CompatProperty; | |
19 | typedef struct DeviceState DeviceState; | |
707ff800 | 20 | typedef struct DeviceListener DeviceListener; |
394e1bb7 | 21 | typedef struct DisplayChangeListener DisplayChangeListener; |
64baadc2 | 22 | typedef struct DisplayState DisplayState; |
394e1bb7 | 23 | typedef struct DisplaySurface DisplaySurface; |
64baadc2 DDAG |
24 | typedef struct DriveInfo DriveInfo; |
25 | typedef struct EventNotifier EventNotifier; | |
5712db6a LE |
26 | typedef struct FWCfgIoState FWCfgIoState; |
27 | typedef struct FWCfgMemState FWCfgMemState; | |
64baadc2 DDAG |
28 | typedef struct FWCfgState FWCfgState; |
29 | typedef struct HCIInfo HCIInfo; | |
a5c82852 | 30 | typedef struct I2CBus I2CBus; |
64baadc2 | 31 | typedef struct I2SCodec I2SCodec; |
394e1bb7 EH |
32 | typedef struct ISABus ISABus; |
33 | typedef struct ISADevice ISADevice; | |
1a8f46f8 | 34 | typedef struct LoadStateEntry LoadStateEntry; |
64baadc2 DDAG |
35 | typedef struct MACAddr MACAddr; |
36 | typedef struct MachineClass MachineClass; | |
37 | typedef struct MachineState MachineState; | |
38 | typedef struct MemoryListener MemoryListener; | |
39 | typedef struct MemoryMappingList MemoryMappingList; | |
40 | typedef struct MemoryRegion MemoryRegion; | |
41 | typedef struct MemoryRegionSection MemoryRegionSection; | |
bca7856a | 42 | typedef struct MigrationIncomingState MigrationIncomingState; |
64baadc2 DDAG |
43 | typedef struct MigrationParams MigrationParams; |
44 | typedef struct Monitor Monitor; | |
45 | typedef struct MouseTransformInfo MouseTransformInfo; | |
46 | typedef struct MSIMessage MSIMessage; | |
47 | typedef struct NetClientState NetClientState; | |
fdccce45 | 48 | typedef struct NetFilterState NetFilterState; |
64baadc2 DDAG |
49 | typedef struct NICInfo NICInfo; |
50 | typedef struct PcGuestInfo PcGuestInfo; | |
51 | typedef struct PCIBridge PCIBridge; | |
394e1bb7 EH |
52 | typedef struct PCIBus PCIBus; |
53 | typedef struct PCIDevice PCIDevice; | |
394e1bb7 | 54 | typedef struct PCIEAERErr PCIEAERErr; |
64baadc2 DDAG |
55 | typedef struct PCIEAERLog PCIEAERLog; |
56 | typedef struct PCIEAERMsg PCIEAERMsg; | |
394e1bb7 EH |
57 | typedef struct PCIEPort PCIEPort; |
58 | typedef struct PCIESlot PCIESlot; | |
64baadc2 DDAG |
59 | typedef struct PCIExpressDevice PCIExpressDevice; |
60 | typedef struct PCIExpressHost PCIExpressHost; | |
61 | typedef struct PCIHostState PCIHostState; | |
8170dfa0 EH |
62 | typedef struct PCMachineState PCMachineState; |
63 | typedef struct PCMachineClass PCMachineClass; | |
394e1bb7 | 64 | typedef struct PCMCIACardState PCMCIACardState; |
64baadc2 DDAG |
65 | typedef struct PixelFormat PixelFormat; |
66 | typedef struct PropertyInfo PropertyInfo; | |
67 | typedef struct Property Property; | |
68 | typedef struct QEMUBH QEMUBH; | |
69 | typedef struct QemuConsole QemuConsole; | |
70 | typedef struct QEMUFile QEMUFile; | |
ae1e9380 PD |
71 | typedef struct QemuOpt QemuOpt; |
72 | typedef struct QemuOpts QemuOpts; | |
73 | typedef struct QemuOptsList QemuOptsList; | |
394e1bb7 | 74 | typedef struct QEMUSGList QEMUSGList; |
deb22f9a | 75 | typedef struct QEMUSizedBuffer QEMUSizedBuffer; |
64baadc2 DDAG |
76 | typedef struct QEMUTimerListGroup QEMUTimerListGroup; |
77 | typedef struct QEMUTimer QEMUTimer; | |
cfe25e2b | 78 | typedef struct Range Range; |
64baadc2 DDAG |
79 | typedef struct SerialState SerialState; |
80 | typedef struct SHPCDevice SHPCDevice; | |
81 | typedef struct SMBusDevice SMBusDevice; | |
82 | typedef struct SSIBus SSIBus; | |
83 | typedef struct uWireSlave uWireSlave; | |
84 | typedef struct VirtIODevice VirtIODevice; | |
85 | typedef struct Visitor Visitor; | |
bf957284 | 86 | typedef struct MonitorDef MonitorDef; |
394e1bb7 EH |
87 | |
88 | #endif /* QEMU_TYPEDEFS_H */ |