summaryrefslogtreecommitdiff
path: root/utils/themeeditor/skin_parser.h
diff options
context:
space:
mode:
Diffstat (limited to 'utils/themeeditor/skin_parser.h')
-rw-r--r--utils/themeeditor/skin_parser.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/utils/themeeditor/skin_parser.h b/utils/themeeditor/skin_parser.h
index a6fd1aa206..50980023b5 100644
--- a/utils/themeeditor/skin_parser.h
+++ b/utils/themeeditor/skin_parser.h
@@ -93,7 +93,7 @@ struct skin_element
93 char* text; 93 char* text;
94 94
95 /* The tag or conditional name */ 95 /* The tag or conditional name */
96 char* name; 96 char name[3];
97 97
98 /* Pointer to and size of an array of parameters */ 98 /* Pointer to and size of an array of parameters */
99 int params_count; 99 int params_count;
@@ -121,4 +121,6 @@ struct skin_element** skin_alloc_children(int count);
121struct skin_tag_parameter* skin_alloc_params(int count); 121struct skin_tag_parameter* skin_alloc_params(int count);
122char* skin_alloc_string(int length); 122char* skin_alloc_string(int length);
123 123
124void skin_free_tree(struct skin_element* root);
125
124#endif /* GENERIC_PARSER_H */ 126#endif /* GENERIC_PARSER_H */