summaryrefslogtreecommitdiff
path: root/lib/skin_parser/skin_debug.h
diff options
context:
space:
mode:
authorBjörn Stenberg <bjorn@haxx.se>2010-06-17 11:04:32 +0000
committerBjörn Stenberg <bjorn@haxx.se>2010-06-17 11:04:32 +0000
commitf1a144a07772d5683d9e117c4639ad75235fd1bc (patch)
treea800b4b0133710df9c751c3f81df00fb71422388 /lib/skin_parser/skin_debug.h
parentdb658d98401d23957c8fe88b4bd96ab184f0ffef (diff)
downloadrockbox-f1a144a07772d5683d9e117c4639ad75235fd1bc.tar.gz
rockbox-f1a144a07772d5683d9e117c4639ad75235fd1bc.zip
Added skin_parser library to build system. Fixed some warnings.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26884 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'lib/skin_parser/skin_debug.h')
-rw-r--r--lib/skin_parser/skin_debug.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/skin_parser/skin_debug.h b/lib/skin_parser/skin_debug.h
index a550dc4c7b..1c096ce952 100644
--- a/lib/skin_parser/skin_debug.h
+++ b/lib/skin_parser/skin_debug.h
@@ -32,14 +32,14 @@ extern "C"
32 32
33/* Debugging functions */ 33/* Debugging functions */
34void skin_error(enum skin_errorcode error); 34void skin_error(enum skin_errorcode error);
35int skin_error_line(); 35int skin_error_line(void);
36char* skin_error_message(); 36char* skin_error_message(void);
37void skin_clear_errors(); 37void skin_clear_errors(void);
38void skin_debug_tree(struct skin_element* root); 38void skin_debug_tree(struct skin_element* root);
39 39
40/* Auxiliary debug functions */ 40/* Auxiliary debug functions */
41void skin_debug_params(int count, struct skin_tag_parameter params[]); 41void skin_debug_params(int count, struct skin_tag_parameter params[]);
42void skin_debug_indent(); 42void skin_debug_indent(void);
43 43
44#ifdef __cplusplus 44#ifdef __cplusplus
45} 45}