The SIMCONNECT_RECV_VOR_LIST structure is used to return a list of SIMCONNECT_DATA_FACILITY_VOR structures.

 

Syntax
typedef struct SIMCONNECT_RECV_SYSTEM_STATE : public SIMCONNECT_RECV {
    DWORD  dwRequestID;
    DWORD  dwInteger;
    float  fFloat;
    char   szString[MAX_PATH];
    };

 

Members
MemberDescription
dwRequestIDDouble word containing the client defined request ID.
dwIntegerDouble word containing an integer, or boolean, value.
fFloatA float value.
szStringNull-terminated string.

 

Remarks

 

This structure inherits the SIMCONNECT_RECV structure and is returned when the dwID parameter of SIMCONNECT_RECV is set to SIMCONNECT_RECV_ID_SYSTEM_STATE.

 

Typically only one of the received integer, float or string will contain information, which one will depend on the request and can be identified by the request ID. Refer to the descriptions of the SimConnect_SetSystemState (Not Supported) and SimConnect_RequestSystemState functions.