The SIMCONNECT_RECV_FACILITY_MINIMAL_LIST structure is used to provide minimal 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_FACILITY_MINIMAL_LIST : public SIMCONNECT_RECV {
    DWORD   RequestID;
    DWORD   ArraySize;
    DWORD   EntryNumber;  
    DWORD   OutOf;  
    SIMCONNECT_FACILITY_MINIMAL rgData[dwArraySize]
    };

 

Members
MemberDescription
RequestIDID of the request.
ArraySizeNumber of elements in the Data struct.
EntryNumberCurrent page index, from 0 to OutOf-1. Mutltiple pages may be required when the Data member has too much information for a single return.
OutOfThe total number of pages that this data forms a part of.
rgData[dwArraySize]Array of SIMCONNECT_FACILITY_MINIMAL structures.

 

Remarks

 

This structure inherits the SIMCONNECT_RECV_FACILITIES_LIST structure, which identifies the number of elements in the list, and the number of packets needed to transmit all the data.

 

See the remarks for SimConnect_RequestFacilitesList.