SIMCONNECT_RECV_EVENT
The SIMCONNECT_RECV_EVENT structure is used to return an event ID to the client.
Syntax
struct SIMCONNECT_RECV_EVENT : public SIMCONNECT_RECV {
DWORD uGroupID;
DWORD uEventID;
DWORD dwData;
};
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 |
This value is usually zero, but some events require further qualification. For example, joystick movement events require a movement value in addition to the notification that the joystick has been moved (see SimConnect_MapInputEventToClientEvent for more information). |
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. This structure is inherited by several other structures:
- SIMCONNECT_RECV_EVENT_FILENAME
- SIMCONNECT_RECV_EVENT_FRAME
- SIMCONNECT_RECV_EVENT
- SIMCONENCT_RECV_EVENT_OBJECT_ADDREMOVE
See Also