The TRANSLATE_STRUCT structure contains the translation table information.
Use this structure to retrieve and set the translation table information.
Structure
struct Translate_Struct
{
TCHAR Filename[MAX_OBJECT_NAME+1];
BYTE Table[256];
TCHAR MsgId[MAX_MESSAGE_ID+1];
int ConditionCode;
int Feedback;
TCHAR MsgText[MAX_MESSAGE_TEXT+1];
TCHAR MsgData[MAX_MESSAGE_DATA+1];
};
typedef struct Translate_Struct TRANSLATE_STRUCT;
|
Members
Member |
Description |
FileName [MAX_OBJECT_NAME+1] |
The name of the file where the translation information
is stored. |
Table [256] |
The actual translation table information. |
MsgId[MAX_MESSAGE_ID+1] |
The message identifier that uniquely identifies
a message. |
ConditionCode |
The return code that accompanies a message. |
Feedback |
Additional return code information. |
MsgText[MAX_MESSAGE_TEXT+1 |
The message text. |
MsgData[MAX_MESSAGE_DATA+1] |
The message substitution field. |