]>
Commit | Line | Data |
---|---|---|
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. */ | |
6 | ||
7 | /* Please keep this list in case-insensitive alphabetical order */ | |
8 | typedef struct AdapterInfo AdapterInfo; | |
9 | typedef struct AddressSpace AddressSpace; | |
10 | typedef struct AioContext AioContext; | |
11 | typedef struct AnnounceTimer AnnounceTimer; | |
12 | typedef struct BdrvDirtyBitmap BdrvDirtyBitmap; | |
13 | typedef struct BdrvDirtyBitmapIter BdrvDirtyBitmapIter; | |
14 | typedef struct BlockBackend BlockBackend; | |
15 | typedef struct BlockBackendRootState BlockBackendRootState; | |
16 | typedef struct BlockDriverState BlockDriverState; | |
17 | typedef struct BusClass BusClass; | |
18 | typedef struct BusState BusState; | |
19 | typedef struct Chardev Chardev; | |
20 | typedef struct CompatProperty CompatProperty; | |
21 | typedef struct CoMutex CoMutex; | |
22 | typedef struct CPUAddressSpace CPUAddressSpace; | |
23 | typedef struct CPUState CPUState; | |
24 | typedef struct DeviceListener DeviceListener; | |
25 | typedef struct DeviceState DeviceState; | |
26 | typedef struct DirtyBitmapSnapshot DirtyBitmapSnapshot; | |
27 | typedef struct DisplayChangeListener DisplayChangeListener; | |
28 | typedef struct DriveInfo DriveInfo; | |
29 | typedef struct Error Error; | |
30 | typedef struct EventNotifier EventNotifier; | |
31 | typedef struct FlatView FlatView; | |
32 | typedef struct FWCfgEntry FWCfgEntry; | |
33 | typedef struct FWCfgIoState FWCfgIoState; | |
34 | typedef struct FWCfgMemState FWCfgMemState; | |
35 | typedef struct FWCfgState FWCfgState; | |
36 | typedef struct HVFX86EmulatorState HVFX86EmulatorState; | |
37 | typedef struct I2CBus I2CBus; | |
38 | typedef struct I2SCodec I2SCodec; | |
39 | typedef struct IOMMUMemoryRegion IOMMUMemoryRegion; | |
40 | typedef struct ISABus ISABus; | |
41 | typedef struct ISADevice ISADevice; | |
42 | typedef struct IsaDma IsaDma; | |
43 | typedef struct MACAddr MACAddr; | |
44 | typedef struct MachineClass MachineClass; | |
45 | typedef struct MachineState MachineState; | |
46 | typedef struct MemoryListener MemoryListener; | |
47 | typedef struct MemoryMappingList MemoryMappingList; | |
48 | typedef struct MemoryRegion MemoryRegion; | |
49 | typedef struct MemoryRegionCache MemoryRegionCache; | |
50 | typedef struct MemoryRegionSection MemoryRegionSection; | |
51 | typedef struct MigrationIncomingState MigrationIncomingState; | |
52 | typedef struct MigrationState MigrationState; | |
53 | typedef struct Monitor Monitor; | |
54 | typedef struct MonitorDef MonitorDef; | |
55 | typedef struct MSIMessage MSIMessage; | |
56 | typedef struct NetClientState NetClientState; | |
57 | typedef struct NetFilterState NetFilterState; | |
58 | typedef struct NICInfo NICInfo; | |
59 | typedef struct NodeInfo NodeInfo; | |
60 | typedef struct NumaNodeMem NumaNodeMem; | |
61 | typedef struct ObjectClass ObjectClass; | |
62 | typedef struct PCIBridge PCIBridge; | |
63 | typedef struct PCIBus PCIBus; | |
64 | typedef struct PCIDevice PCIDevice; | |
65 | typedef struct PCIEAERErr PCIEAERErr; | |
66 | typedef struct PCIEAERLog PCIEAERLog; | |
67 | typedef struct PCIEAERMsg PCIEAERMsg; | |
68 | typedef struct PCIEPort PCIEPort; | |
69 | typedef struct PCIESlot PCIESlot; | |
70 | typedef struct PCIExpressDevice PCIExpressDevice; | |
71 | typedef struct PCIExpressHost PCIExpressHost; | |
72 | typedef struct PCIHostDeviceAddress PCIHostDeviceAddress; | |
73 | typedef struct PCIHostState PCIHostState; | |
74 | typedef struct PCMachineState PCMachineState; | |
75 | typedef struct PostcopyDiscardState PostcopyDiscardState; | |
76 | typedef struct Property Property; | |
77 | typedef struct PropertyInfo PropertyInfo; | |
78 | typedef struct QBool QBool; | |
79 | typedef struct QDict QDict; | |
80 | typedef struct QEMUBH QEMUBH; | |
81 | typedef struct QemuConsole QemuConsole; | |
82 | typedef struct QEMUFile QEMUFile; | |
83 | typedef struct QemuLockable QemuLockable; | |
84 | typedef struct QemuMutex QemuMutex; | |
85 | typedef struct QemuOpt QemuOpt; | |
86 | typedef struct QemuOpts QemuOpts; | |
87 | typedef struct QemuOptsList QemuOptsList; | |
88 | typedef struct QEMUSGList QEMUSGList; | |
89 | typedef struct QemuSpin QemuSpin; | |
90 | typedef struct QEMUTimer QEMUTimer; | |
91 | typedef struct QEMUTimerListGroup QEMUTimerListGroup; | |
92 | typedef struct QJSON QJSON; | |
93 | typedef struct QList QList; | |
94 | typedef struct QNull QNull; | |
95 | typedef struct QNum QNum; | |
96 | typedef struct QObject QObject; | |
97 | typedef struct QString QString; | |
98 | typedef struct RAMBlock RAMBlock; | |
99 | typedef struct Range Range; | |
100 | typedef struct SHPCDevice SHPCDevice; | |
101 | typedef struct SSIBus SSIBus; | |
102 | typedef struct VirtIODevice VirtIODevice; | |
103 | typedef struct Visitor Visitor; | |
104 | typedef void SaveStateHandler(QEMUFile *f, void *opaque); | |
105 | typedef int LoadStateHandler(QEMUFile *f, void *opaque, int version_id); | |
106 | ||
107 | #endif /* QEMU_TYPEDEFS_H */ |