msg.c
Go to the documentation of this file.00001 00041 /*#* 00042 *#* $Log$ 00043 *#* Revision 1.2 2006/07/19 12:56:28 bernie 00044 *#* Convert to new Doxygen style. 00045 *#* 00046 *#* Revision 1.1 2005/03/01 23:31:02 bernie 00047 *#* String table and localization stuff. 00048 *#* 00049 *#*/ 00050 00051 #include "msg.h" 00052 00057 const char *msg_strings[MSG_COUNT] = { 00058 0, 00059 // TODO: add your strings here 00060 }; 00061 00062 /* Buffer for catalog file */ 00063 /* char msg_buf[MSG_BUFSIZE]; */ 00064 00065 00066 /* The following does not work (move string tables into the DMSG/CMSG segments) 00067 * #pragma memory=dataseg(DMSG) 00068 * #pragma memory=constseg(CMSG) 00069 */ 00070 00071 00076 const char 00077 str_empty[] = ""; 00078
