]> git.proxmox.com Git - mirror_qemu.git/blob - include/qemu/typedefs.h
monitor: add object-add (QMP) and object_add (HMP) command
[mirror_qemu.git] / include / qemu / typedefs.h
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 typedef struct QEMUTimer QEMUTimer;
7 typedef struct QEMUTimerListGroup QEMUTimerListGroup;
8 typedef struct QEMUFile QEMUFile;
9 typedef struct QEMUBH QEMUBH;
10
11 typedef struct AioContext AioContext;
12
13 typedef struct Visitor Visitor;
14
15 struct Monitor;
16 typedef struct Monitor Monitor;
17 typedef struct MigrationParams MigrationParams;
18
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;
25
26 typedef struct AddressSpace AddressSpace;
27 typedef struct MemoryRegion MemoryRegion;
28 typedef struct MemoryRegionSection MemoryRegionSection;
29
30 typedef struct MemoryMappingList MemoryMappingList;
31
32 typedef struct NICInfo NICInfo;
33 typedef struct HCIInfo HCIInfo;
34 typedef struct AudioState AudioState;
35 typedef struct BlockDriverState BlockDriverState;
36 typedef struct DriveInfo DriveInfo;
37 typedef struct DisplayState DisplayState;
38 typedef struct DisplayChangeListener DisplayChangeListener;
39 typedef struct DisplaySurface DisplaySurface;
40 typedef struct PixelFormat PixelFormat;
41 typedef struct QemuConsole QemuConsole;
42 typedef struct CharDriverState CharDriverState;
43 typedef struct MACAddr MACAddr;
44 typedef struct NetClientState NetClientState;
45 typedef struct i2c_bus i2c_bus;
46 typedef struct ISABus ISABus;
47 typedef struct ISADevice ISADevice;
48 typedef struct SMBusDevice SMBusDevice;
49 typedef struct PCIHostState PCIHostState;
50 typedef struct PCIExpressHost PCIExpressHost;
51 typedef struct PCIBus PCIBus;
52 typedef struct PCIDevice PCIDevice;
53 typedef struct PCIExpressDevice PCIExpressDevice;
54 typedef struct PCIBridge PCIBridge;
55 typedef struct PCIEAERMsg PCIEAERMsg;
56 typedef struct PCIEAERLog PCIEAERLog;
57 typedef struct PCIEAERErr PCIEAERErr;
58 typedef struct PCIEPort PCIEPort;
59 typedef struct PCIESlot PCIESlot;
60 typedef struct MSIMessage MSIMessage;
61 typedef struct SerialState SerialState;
62 typedef struct PCMCIACardState PCMCIACardState;
63 typedef struct MouseTransformInfo MouseTransformInfo;
64 typedef struct uWireSlave uWireSlave;
65 typedef struct I2SCodec I2SCodec;
66 typedef struct SSIBus SSIBus;
67 typedef struct EventNotifier EventNotifier;
68 typedef struct VirtIODevice VirtIODevice;
69 typedef struct QEMUSGList QEMUSGList;
70 typedef struct SHPCDevice SHPCDevice;
71 typedef struct FWCfgState FWCfgState;
72 typedef struct PcGuestInfo PcGuestInfo;
73 typedef struct Range Range;
74
75 #endif /* QEMU_TYPEDEFS_H */