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
This commit is contained in:
Nils Wallménius 2008-12-03 12:14:46 +00:00
parent c616520dc5
commit 4317ff90a9
2 changed files with 10 additions and 9 deletions

View file

@ -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)

View file

@ -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);