Theme Editor: Added extern C declarations to header files

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26433 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Robert Bieber 2010-05-31 17:39:58 +00:00
parent 0ea7905395
commit c5e14b5835
8 changed files with 43 additions and 11 deletions

View file

@ -22,6 +22,12 @@
#ifndef GENERIC_PARSER_H
#define GENERIC_PARSER_H
#ifdef __cplusplus
extern "C"
{
#endif
#define SKIN_MAX_MEMORY 1048576
/********************************************************************
@ -124,4 +130,8 @@ char* skin_alloc_string(int length);
void skin_free_tree(struct skin_element* root);
#ifdef __cplusplus
}
#endif
#endif /* GENERIC_PARSER_H */