SIMCONNECT_RECV_RESERVED_KEY
The SIMCONNECT_RECV_RESERVED_KEY structure is used with the SimConnect_RequestReservedKey function to return the reserved key combination.
Syntax
struct SIMCONNECT_RECV_RESERVED_KEY : public SIMCONNECT_RECV {
char szChoiceReserved[30];
char szReservedKey[50];
};
Members
Member | Description |
---|---|
szChoiceReserved[30] |
Null-terminated string containing the key that has been reserved. This will be identical to the string entered as one of the choices for the SimConnect_RequestReservedKey function. |
szReservedKey[50] |
Null-terminated string containing the reserved key combination. This will be an uppercase string containing all the modifiers that apply. For example, if the client program requests "q", and the choice is accepted, then this parameter will contain "TAB+Q". If the client program requests "Q", then this parameter will contain "SHIFT+TAB+Q". This string could then appear, for example, in a dialog from the client application, informing a user of the appropriate help key. |
Remarks
This structure inherits the SIMCONNECT_RECV
structure and is returned when the dwID
parameter of SIMCONNECT_RECV
is set to SIMCONNECT_RECV_ID_RESERVED_KEY
.
See Also