messages.c
Go to the documentation of this file.00001 00041 #include "messages.h" 00042 00047 const char *msg_strings[MSG_COUNT] = { 00048 0, 00049 // TODO: add your strings here 00050 }; 00051 00052 /* Buffer for catalog file */ 00053 /* char msg_buf[MSG_BUFSIZE]; */ 00054 00055 00056 /* The following does not work (move string tables into the DMSG/CMSG segments) 00057 * #pragma memory=dataseg(DMSG) 00058 * #pragma memory=constseg(CMSG) 00059 */ 00060 00061 00066 const char str_empty[] = ""; 00067
