diff options
| author | Robert Bieber <robby@bieberphoto.com> | 2010-07-18 00:59:02 +0000 |
|---|---|---|
| committer | Robert Bieber <robby@bieberphoto.com> | 2010-07-18 00:59:02 +0000 |
| commit | 3c4fb8abe4e28091cb857705af2d762cd00b985a (patch) | |
| tree | 804090633b693cbb185d801a75683404d345e2fc /lib/skin_parser/skin_debug.h | |
| parent | eb52a45a0c1f42386dbc0e148e81972ae3878b71 (diff) | |
| download | rockbox-3c4fb8abe4e28091cb857705af2d762cd00b985a.zip rockbox-3c4fb8abe4e28091cb857705af2d762cd00b985a.tar.gz rockbox-3c4fb8abe4e28091cb857705af2d762cd00b985a.tar.bz2 rockbox-3c4fb8abe4e28091cb857705af2d762cd00b985a.tar.xz | |
Theme Editor: Added column number to parser error messages
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27477 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'lib/skin_parser/skin_debug.h')
| -rw-r--r-- | lib/skin_parser/skin_debug.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/skin_parser/skin_debug.h b/lib/skin_parser/skin_debug.h index 8fc061a..fbff5cb 100644 --- a/lib/skin_parser/skin_debug.h +++ b/lib/skin_parser/skin_debug.h @@ -31,8 +31,9 @@ extern "C" #include "skin_parser.h" #ifndef ROCKBOX /* Debugging functions */ -void skin_error(enum skin_errorcode error); +void skin_error(enum skin_errorcode error, char* cursor); int skin_error_line(void); +int skin_error_col(void); char* skin_error_message(void); void skin_clear_errors(void); void skin_debug_tree(struct skin_element* root); |