Sistema l'errore da me commesso in fase di conversione...
[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.2  2006/07/19 12:56:28  bernie
19  *#* Convert to new Doxygen style.
20  *#*
21  *#* Revision 1.1  2005/03/01 23:31:02  bernie
22  *#* String table and localization stuff.
23  *#*
24  *#*/
25
26 #include "msg.h"
27
28 /**
29  * Array of pointers to localized strings. Should be filled
30  * by localization stuff, but not for now.
31  */
32 const char *msg_strings[MSG_COUNT] = {
33         0,
34         // TODO: add your strings here
35 };
36
37 /* Buffer for catalog file */
38 /* char msg_buf[MSG_BUFSIZE]; */
39
40
41 /* The following does not work (move string tables into the DMSG/CMSG segments)
42  * #pragma memory=dataseg(DMSG)
43  * #pragma memory=constseg(CMSG)
44  */
45
46
47 /**
48  * Untranslated constant strings used more than once are
49  * grouped here to save ROM space.
50  */
51 const char
52         str_empty[] = "";
53