The MESSAGE_STRUCT structure contains the Connect:Direct® message
information. Use this structure to retrieve the message information.
It contains the unique message identifier.
Structure
struct Message_Struct
{
TCHAR MsgId[MAX_MESSAGE_ID+1];
int ConditionCode;
int Feedback;
TCHAR MsgText[MAX_MESSAGE_TEXT+1];
TCHAR MsgData[MAX_MESSAGE_DATA+1];
};
typedef struct Message_Struct MESSAGE_STRUCT;
|
Members
Member |
Description |
MsgId [MAX_MESSAGE_ID+1] |
The message identifier that uniquely identifies
this message. |
ConditionCode |
The return code accompanying the message. |
Feedback |
Additional return code information. |
MsgText [MAX_MESSAGE_TEXT+1] |
The message text. |
MsgData [MAX_MESSAGE_DATA+1] |
Message substitution fields. |