SIMCONNECT_RECV_FACILITIES_LIST

The SIMCONNECT_RECV_FACILITIES_LIST structure is used to provide information on the number of elements in a list of facilities returned to the client, and the number of packets that were used to transmit the data.

 

Syntax
struct SIMCONNECT_RECV_FACILITIES_LIST : public SIMCONNECT_RECV{   
    DWORD  dwRequestID;   
    DWORD  dwArraySize;   
    DWORD  dwEntryNumber;   
    DWORD  dwOutOf; 
    };

 

Members
Member Description
dwRequestID Double word containing the client defined request ID.
dwArraySize Double word containing the number of elements in the list that are within this packet. For example, if there are 25 airports returned in the SIMCONNECT_RECV_AIRPORT_LIST structure, then this field will contain 25, but if there are 400 airports in the list and the data is returned in two packets, then this value will contain the number of entries within each packet.
dwEntryNumber Double word containing the index number of this list packet. This number will be from 0 to dwOutOf - 1.
dwOutOf Double word containing the total number of packets used to transmit the list.

Remarks

This structure is inherited by SIMCONNECT_RECV_AIRPORT_LIST, SIMCONNECT_RECV_NDB_LIST, SIMCONNECT_RECV_VOR_LIST and SIMCONNECT_RECV_WAYPOINT_LIST.

 

This structure inherits the SIMCONNECT_RECV structure, so use the SIMCONNECT_RECV_ID enumeration to determine which list structure has been received.

 

See the remarks for SimConnect_RequestFacilitesList.

 

See Also