From 4317ff90a92ffa91b4aa457410d40da338182436 Mon Sep 17 00:00:00 2001 From: Nils Wallménius Date: Wed, 3 Dec 2008 12:14:46 +0000 Subject: 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 --- apps/language.c | 10 ++++++++++ apps/language.h | 9 --------- 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, ...); #include "debug.h" #include "string.h" +/* The following header is generated by the build system and only defines + MAX_LANGUAGE_SIZE to be the size of the largest currently available + language! */ +#include "max_language_size.h" + +/* both these must match the two initial bytes in the binary lang file */ +#define LANGUAGE_COOKIE 0x1a +#define LANGUAGE_VERSION 0x04 + + static unsigned char language_buffer[MAX_LANGUAGE_SIZE]; void 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 @@ * ****************************************************************************/ -/* The following header is generated by the build system and only defines - MAX_LANGUAGE_SIZE to be the size of the largest currently available - language! */ -#include "max_language_size.h" - -/* both these must match the two initial bytes in the binary lang file */ -#define LANGUAGE_COOKIE 0x1a -#define LANGUAGE_VERSION 0x04 - /* Initialize language array with the builtin strings */ void lang_init(void); -- cgit v1.2.3