Theme Editor: Factored out code to skip over enum/arg lists while scanning for children counts, and fixed all of the parsing bugs caused by innacurate children counts
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26679 a1c6a512-1295-4272-9138-f99709370657
diff --git a/utils/themeeditor/skin_scan.h b/utils/themeeditor/skin_scan.h
index 6aea92c..b1d04a6 100644
--- a/utils/themeeditor/skin_scan.h
+++ b/utils/themeeditor/skin_scan.h
@@ -31,6 +31,8 @@
/* Scanning functions */
void skip_comment(char** document);
void skip_whitespace(char** document);
+void skip_arglist(char** document);
+void skip_enumlist(char** document);
char* scan_string(char** document);
int scan_int(char** document);
int check_viewport(char* document); /* Checks for a viewport declaration */