diff options
author | Christi Scarborough <christi@coraline.org> | 2005-11-17 20:14:59 +0000 |
---|---|---|
committer | Christi Scarborough <christi@coraline.org> | 2005-11-17 20:14:59 +0000 |
commit | 4c0b83f5e913820bbcf203fee1606d9910925946 (patch) | |
tree | c4e9cdcb1cf8196f60a3ff8b68ebc5d1a514e967 /apps/settings.h | |
parent | bc1fb0f5d91084d3e06ef3526533324108bf1de7 (diff) |
Remote WPS support (and some WPS bugfixes) by Stephan Wezel
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7934 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/settings.h')
-rw-r--r-- | apps/settings.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/settings.h b/apps/settings.h index 50f38cab50..20b0408dfd 100644 --- a/apps/settings.h +++ b/apps/settings.h @@ -359,6 +359,9 @@ struct user_settings bool dircache; /* enable directory cache */ int dircache_size; /* directory cache structure last size, 22 bits */ #endif +#ifdef HAVE_REMOTE_LCD + unsigned char rwps_file[MAX_FILENAME+1]; /* last remote-wps */ +#endif }; enum optiontype { INT, BOOL }; @@ -443,7 +446,7 @@ enum * must be added after NUM_FILTER_MODES. */ enum { SHOW_ALL, SHOW_SUPPORTED, SHOW_MUSIC, SHOW_PLAYLIST, SHOW_ID3DB, NUM_FILTER_MODES, - SHOW_WPS, SHOW_CFG, SHOW_LNG, SHOW_MOD, SHOW_FONT, SHOW_PLUGINS}; + SHOW_WPS, SHOW_RWPS, SHOW_CFG, SHOW_LNG, SHOW_MOD, SHOW_FONT, SHOW_PLUGINS}; /* recursive dir insert options */ enum { RECURSE_OFF, RECURSE_ON, RECURSE_ASK }; |