From 5301881adca9508f12eeb80704a201ff579e5836 Mon Sep 17 00:00:00 2001 From: Justin Heiner Date: Sat, 24 Aug 2002 06:57:24 +0000 Subject: Update to the Custom WPS. Now actually works, can be fed any string, uses %xx instead of just %x, and more! It's #define'd out in settings.h - Needs to be enabled to use it. PLAYER ONLY git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1963 a1c6a512-1295-4272-9138-f99709370657 --- apps/settings.h | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'apps/settings.h') diff --git a/apps/settings.h b/apps/settings.h index 36cf4930e1..fe85c13bfd 100644 --- a/apps/settings.h +++ b/apps/settings.h @@ -23,6 +23,9 @@ #include #include "file.h" +/* Custom WPS Parsing - Uncomment to enable - PLAYER ONLY */ +/* #define CUSTOM_WPS */ + /* data structures */ #define RESUME_OFF 0 @@ -63,6 +66,10 @@ struct user_settings bool sort_case; /* dir sort order: 0=case insensitive, 1=sensitive */ int scroll_speed; /* long texts scrolling speed: 1-20 */ bool playlist_shuffle; +#ifdef CUSTOM_WPS + char custom_wps[64]; /* custom WPS string */ + bool wps_changed; /* to reload Custom WPS if changed to it */ +#endif /* while playing screen settings */ int wps_display; /* 0=id3, 1=file, 2=parse */ -- cgit v1.2.3