summaryrefslogtreecommitdiff
path: root/lib/skin_parser/skin_parser.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/skin_parser/skin_parser.h')
-rw-r--r--lib/skin_parser/skin_parser.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/skin_parser/skin_parser.h b/lib/skin_parser/skin_parser.h
index 6ccf31a0e5..7cef0107a3 100644
--- a/lib/skin_parser/skin_parser.h
+++ b/lib/skin_parser/skin_parser.h
@@ -27,6 +27,7 @@ extern "C"
27{ 27{
28#endif 28#endif
29#include <stdlib.h> 29#include <stdlib.h>
30#include <stdbool.h>
30 31
31/******************************************************************** 32/********************************************************************
32 ****** Data Structures ********************************************* 33 ****** Data Structures *********************************************
@@ -139,7 +140,7 @@ struct skin_element* skin_parse(const char* document);
139/* Memory management functions */ 140/* Memory management functions */
140struct skin_element* skin_alloc_element(void); 141struct skin_element* skin_alloc_element(void);
141struct skin_element** skin_alloc_children(int count); 142struct skin_element** skin_alloc_children(int count);
142struct skin_tag_parameter* skin_alloc_params(int count); 143struct skin_tag_parameter* skin_alloc_params(int count, bool use_shared_params);
143char* skin_alloc_string(int length); 144char* skin_alloc_string(int length);
144 145
145void skin_free_tree(struct skin_element* root); 146void skin_free_tree(struct skin_element* root);