SIMCONNECT_INPUT_EVENT_TYPE

The SIMCONNECT_INPUT_EVENT_TYPE enumeration type is used with the SimConnect_GetInputEvent call to specify the data type used and help you cast the return value correctly.

 

Syntax
enum SIMCONNECT_INPUT_EVENT_TYPE : DWORD{
    SIMCONNECT_INPUT_EVENT_TYPE_NONE,
    SIMCONNECT_INPUT_EVENT_TYPE_DOUBLE,
    SIMCONNECT_INPUT_EVENT_TYPE_STRING
};

 

Members
Member Description
SIMCONNECT_INPUT_EVENT_TYPE_NONE

No data type specification required (C++ only).

SIMCONNECT_INPUT_EVENT_TYPE_DOUBLE

Specifies a double.

SIMCONNECT_INPUT_EVENT_TYPE_STRING Specifies a string.

 

Remarks

N/A

 

See Also