summaryrefslogtreecommitdiff
path: root/apps/wps.h
diff options
context:
space:
mode:
authorJustin Heiner <jheiner@rockbox.org>2002-08-22 14:19:47 +0000
committerJustin Heiner <jheiner@rockbox.org>2002-08-22 14:19:47 +0000
commit1a8f34bfa9bf274b292e1c65532edd89f2589884 (patch)
tree2c5261f19a625a3f044fd44485c7dac700777202 /apps/wps.h
parentae3952ec90ba7d86ea046b0553cc5e4c1d626b65 (diff)
downloadrockbox-1a8f34bfa9bf274b292e1c65532edd89f2589884.tar.gz
rockbox-1a8f34bfa9bf274b292e1c65532edd89f2589884.zip
Changed CUSTOM_WPS to be a define-only feature until it is more complete. To include it, simply uncomment the #define CUSTOM_WPS line in wps.h
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1924 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/wps.h')
-rw-r--r--apps/wps.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/apps/wps.h b/apps/wps.h
index eb77767cff..a65a9fda6a 100644
--- a/apps/wps.h
+++ b/apps/wps.h
@@ -21,9 +21,14 @@
21#include "id3.h" 21#include "id3.h"
22#include "playlist.h" 22#include "playlist.h"
23 23
24/* #define CUSTOM_WPS */
25
24extern bool keys_locked; 26extern bool keys_locked;
25 27
26int wps_show(void); 28int wps_show(void);
29
30#ifdef CUSTOM_WPS
27int wps_load_custom_config(void); 31int wps_load_custom_config(void);
32#endif
28 33
29#endif 34#endif