summaryrefslogtreecommitdiff
path: root/apps/language.c
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 /apps/language.c
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
Diffstat (limited to 'apps/language.c')
-rw-r--r--apps/language.c10
1 files changed, 10 insertions, 0 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)