SIMCONNECT_RECV_EVENT_EX1

The SIMCONNECT_RECV_EVENT_EX1 structure is used to return an event ID to the client, along with up to 5 parameters.

 

Syntax
struct SIMCONNECT_RECV_EVENT_EX1 : public SIMCONNECT_RECV {
    DWORD  uGroupID;
    DWORD  uEventID;
    DWORD  dwData[5];
    };

 

Members
Member Description
uGroupID The ID of the client defined group, or the special case value: UNKNOWN_GROUP (which equals DWORD_MAX).
uEventID The ID of the client defined event that has been requested (such as EVENT_1 or EVENT_BRAKES).
dwData[5] This is an array of up to 5 values where each value correpsonds to a parameter that was passed along with the event.

Remarks

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

 

See Also