SIMCONNECT_RECV
The SIMCONNECT_RECV structure is used with the SIMCONNECT_RECV_ID enumeration to indicate which type of structure has been returned.
Syntax
struct SIMCONNECT_RECV{
DWORD dwSize;
DWORD dwVersion;
DWORD dwID;
};
Members
Member | Description |
---|---|
dwSize |
The total size of the returned structure in bytes (that is, not usually the size of the SIMCONNECT_RECV structure, but of the structure that inherits it). |
dwVersion |
The version number of the SimConnect server. |
dwID |
The ID of the returned structure. One member of SIMCONNECT_RECV_ID. |
Remarks
This structure is inherited directly by:
- SIMCONNECT_RECV_OPEN
- SIMCONNECT_RECV_EVENT
- SIMCONNECT_RECV_EVENT_EX1
- SIMCONNECT_RECV_EXCEPTION
- SIMCONNECT_RECV_SIMOBJECT_DATA
- SIMCONNECT_RECV_ASSIGNED_OBJECT_ID
- SIMCONNECT_RECV_RESERVED_KEY
- SIMCONNECT_RECV_SYSTEM_STATE
- SIMCONNECT_RECV_FACILITIES_LIST
- SIMCONNECT_RECV_FACILITY_DATA
- SIMCONNECT_RECV_FACILITY_DATA_END
- SIMCONNECT_RECV_SYSTEM_STATE
- SIMCONNECT_RECV_RESERVED_KEY
- SIMCONNECT_RECV_LIST_TEMPLATE
The structure is also inherited by SIMCONNECT_RECV_QUIT
, which does not add any new members. This structure is received when the user quits Microsoft Flight Simulator.
This structure is inherited by the SIMCONNECT_RECV_EVENT
structure, which is itself inherited by several other structures:
See Also