net: cadence_gem: Make phy respond to broadcast
[qemu.git] / include / qemu / typedefs.h
blobbf8daac659894c84f859f0386a5dc87d5602822f
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 NICInfo NICInfo;
35 typedef struct HCIInfo HCIInfo;
36 typedef struct AudioState AudioState;
37 typedef struct BlockDriverState BlockDriverState;
38 typedef struct DriveInfo DriveInfo;
39 typedef struct DisplayState DisplayState;
40 typedef struct DisplayChangeListener DisplayChangeListener;
41 typedef struct DisplaySurface DisplaySurface;
42 typedef struct PixelFormat PixelFormat;
43 typedef struct QemuConsole QemuConsole;
44 typedef struct CharDriverState CharDriverState;
45 typedef struct MACAddr MACAddr;
46 typedef struct NetClientState NetClientState;
47 typedef struct I2CBus I2CBus;
48 typedef struct ISABus ISABus;
49 typedef struct ISADevice ISADevice;
50 typedef struct SMBusDevice SMBusDevice;
51 typedef struct PCIHostState PCIHostState;
52 typedef struct PCIExpressHost PCIExpressHost;
53 typedef struct PCIBus PCIBus;
54 typedef struct PCIDevice PCIDevice;
55 typedef struct PCIExpressDevice PCIExpressDevice;
56 typedef struct PCIBridge PCIBridge;
57 typedef struct PCIEAERMsg PCIEAERMsg;
58 typedef struct PCIEAERLog PCIEAERLog;
59 typedef struct PCIEAERErr PCIEAERErr;
60 typedef struct PCIEPort PCIEPort;
61 typedef struct PCIESlot PCIESlot;
62 typedef struct MSIMessage MSIMessage;
63 typedef struct SerialState SerialState;
64 typedef struct PCMCIACardState PCMCIACardState;
65 typedef struct MouseTransformInfo MouseTransformInfo;
66 typedef struct uWireSlave uWireSlave;
67 typedef struct I2SCodec I2SCodec;
68 typedef struct SSIBus SSIBus;
69 typedef struct EventNotifier EventNotifier;
70 typedef struct VirtIODevice VirtIODevice;
71 typedef struct QEMUSGList QEMUSGList;
72 typedef struct SHPCDevice SHPCDevice;
73 typedef struct FWCfgState FWCfgState;
74 typedef struct PcGuestInfo PcGuestInfo;
75 typedef struct Range Range;
77 #endif /* QEMU_TYPEDEFS_H */