SIMCONNECT_FACILITY_LIST_TYPE

The SIMCONNECT_FACILITY_LIST_TYPE enumeration type is used to determine which type of facilities data is being requested or returned.

 

Syntax
enum SIMCONNECT_FACILITY_LIST_TYPE{
    SIMCONNECT_FACILITY_LIST_TYPE_AIRPORT,
    SIMCONNECT_FACILITY_LIST_TYPE_WAYPOINT,
    SIMCONNECT_FACILITY_LIST_TYPE_NDB,
    SIMCONNECT_FACILITY_LIST_TYPE_VOR,
    SIMCONNECT_FACILITY_LIST_TYPE_COUNT
    };

 

Members
Member Description
SIMCONNECT_FACILITY_LIST_TYPE_AIRPORT Specifies that the type of information is for an airport, see SIMCONNECT_DATA_FACILITY_AIRPORT.
SIMCONNECT_FACILITY_LIST_TYPE_WAYPOINT Specifies that the type of information is for a waypoint, see SIMCONNECT_DATA_FACILITY_WAYPOINT.
SIMCONNECT_FACILITY_LIST_TYPE_NDB

Specifies that the type of information is for an NDB, see SIMCONNECT_DATA_FACILITY_NDB.

SIMCONNECT_FACILITY_LIST_TYPE_VOR

Specifies that the type of information is for a VOR, see SIMCONNECT_DATA_FACILITY_VOR.

SIMCONNECT_FACILITY_LIST_TYPE_COUNT

Not valid as a list type, but simply the number of list types.

 

Remarks

See the remarks for SimConnect_RequestFacilitesList.

 

See Also