summaryrefslogtreecommitdiff
path: root/apps/plugin.h
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2009-07-05 22:12:42 +0000
committerThomas Martitz <kugel@rockbox.org>2009-07-05 22:12:42 +0000
commitdf6f955a82bce03650f24f562926ae9e7ffa58d4 (patch)
tree0fd59aa1160d6b1ddf5728e81ccb39db2fc94809 /apps/plugin.h
parent9431ea8c6539349126c93492f902292436f66339 (diff)
downloadrockbox-df6f955a82bce03650f24f562926ae9e7ffa58d4.zip
rockbox-df6f955a82bce03650f24f562926ae9e7ffa58d4.tar.gz
rockbox-df6f955a82bce03650f24f562926ae9e7ffa58d4.tar.bz2
rockbox-df6f955a82bce03650f24f562926ae9e7ffa58d4.tar.xz
Add a possibility for plugins to go directly to the WPS after exiting.
It only works for plugins executed via the filebrowser for now. Those executed from the context menu or a simplelist (such as "Open With...") need additional hacking. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21680 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugin.h')
-rw-r--r--apps/plugin.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/plugin.h b/apps/plugin.h
index f3d4c23..253cfd0 100644
--- a/apps/plugin.h
+++ b/apps/plugin.h
@@ -139,6 +139,7 @@ void* plugin_get_buffer(size_t *buffer_size);
enum plugin_status {
PLUGIN_OK = 0,
PLUGIN_USB_CONNECTED,
+ PLUGIN_GOTO_WPS,
PLUGIN_ERROR = -1,
};