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  dwData0;
    DWORD  dwData1;
    DWORD  dwData2;
    DWORD  dwData3;
    DWORD  dwData4;
    };

 

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).

dwData0

to

dwData4

Each of these 5 paramters corresponds 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