76c66437022b3203d1107a267994f62b99c86d34
[bertos.git] / mware / msg.c
1 /*!
2  * \file
3  * <!--
4  * Copyright 2003, 2005 Develer S.r.l. (http://www.develer.com/)
5  * This file is part of DevLib - See README.devlib for information.
6  * -->
7  *
8  * \brief Messages for LCD.
9  *
10  * \version $Id$
11  *
12  * \author Bernardo Innocenti <bernie@develer.com>
13  * \author Stefano Fedrigo <aleph@develer.com>
14  */
15
16 /*#*
17  *#* $Log$
18  *#* Revision 1.1  2005/03/01 23:31:02  bernie
19  *#* String table and localization stuff.
20  *#*
21  *#*/
22
23 #include "msg.h"
24
25 /*!
26  * Array of pointers to localized strings. Should be filled
27  * by localization stuff, but not for now.
28  */
29 const char *msg_strings[MSG_COUNT] = {
30         0,
31         // TODO: add your strings here
32 };
33
34 /* Buffer for catalog file */
35 /* char msg_buf[MSG_BUFSIZE]; */
36
37
38 /* The following does not work (move string tables into the DMSG/CMSG segments)
39  * #pragma memory=dataseg(DMSG)
40  * #pragma memory=constseg(CMSG)
41  */
42
43
44 /*!
45  * Untranslated constant strings used more than once are
46  * grouped here to save ROM space.
47  */
48 const char
49         str_empty[] = "";
50