summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNils Wallménius <nils@rockbox.org>2008-12-03 12:14:46 +0000
committerNils Wallménius <nils@rockbox.org>2008-12-03 12:14:46 +0000
commit4317ff90a92ffa91b4aa457410d40da338182436 (patch)
treea12443b5998c9947d96ab1468f0f2d81b2ef3a5f
parentc616520dc5caec6acd3430381fcc9495e1562bc4 (diff)
downloadrockbox-4317ff90a92ffa91b4aa457410d40da338182436.tar.gz
rockbox-4317ff90a92ffa91b4aa457410d40da338182436.zip
Move #defines and #include into c file as this is the only place they are used
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19313 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/language.c10
-rw-r--r--apps/language.h9
2 files changed, 10 insertions, 9 deletions
diff --git a/apps/language.c b/apps/language.c
index 06e7846e8d..a714ef7d90 100644
--- a/apps/language.c
+++ b/apps/language.c
@@ -29,6 +29,16 @@ extern int printf(const char *format, ...);
29#include "debug.h" 29#include "debug.h"
30#include "string.h" 30#include "string.h"
31 31
32/* The following header is generated by the build system and only defines
33 MAX_LANGUAGE_SIZE to be the size of the largest currently available
34 language! */
35#include "max_language_size.h"
36
37/* both these must match the two initial bytes in the binary lang file */
38#define LANGUAGE_COOKIE 0x1a
39#define LANGUAGE_VERSION 0x04
40
41
32static unsigned char language_buffer[MAX_LANGUAGE_SIZE]; 42static unsigned char language_buffer[MAX_LANGUAGE_SIZE];
33 43
34void lang_init(void) 44void lang_init(void)
diff --git a/apps/language.h b/apps/language.h
index 0203b15796..a35387cf49 100644
--- a/apps/language.h
+++ b/apps/language.h
@@ -21,15 +21,6 @@
21 * 21 *
22 ****************************************************************************/ 22 ****************************************************************************/
23 23
24/* The following header is generated by the build system and only defines
25 MAX_LANGUAGE_SIZE to be the size of the largest currently available
26 language! */
27#include "max_language_size.h"
28
29/* both these must match the two initial bytes in the binary lang file */
30#define LANGUAGE_COOKIE 0x1a
31#define LANGUAGE_VERSION 0x04
32
33/* Initialize language array with the builtin strings */ 24/* Initialize language array with the builtin strings */
34void lang_init(void); 25void lang_init(void);
35 26