diff options
author | Jonathan Gordon <rockbox@jdgordon.info> | 2008-06-05 08:20:39 +0000 |
---|---|---|
committer | Jonathan Gordon <rockbox@jdgordon.info> | 2008-06-05 08:20:39 +0000 |
commit | f002b7d0552f7c4b5d8229fe07982748e9ade731 (patch) | |
tree | 143d256739a433b5980ae3f80fb7ca986d837db8 /apps/misc.h | |
parent | dd7103ae2e2a73c91a393aaa2ae62f17bbd93535 (diff) |
make %V a little simpler. only the x and y values have to be specified now (i.e %V|0|0|||||| )
default values are as follows:
width - lcd width - the x value
height - lcd height - y value
font - user font
fg colour - the themes fg colour on 16bit targets, black on greyscale targets
bg colour - the themes bg colour on 16bit targets, white on greyscale targets
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17690 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/misc.h')
-rw-r--r-- | apps/misc.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/misc.h b/apps/misc.h index 4d0226ae51..8dc61920c8 100644 --- a/apps/misc.h +++ b/apps/misc.h @@ -129,6 +129,7 @@ bool dir_exists(const char *path); char *strip_extension(char* buffer, int buffer_size, const char *filename); /* A simplified scanf */ -const char* parse_list(const char *fmt, const char sep, const char* str, ...); +const char* parse_list(const char *fmt, unsigned int *valid_vals, + const char sep, const char* str, ...); #endif /* MISC_H */ |