1
0
Fork 0
forked from len0rd/rockbox

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
This commit is contained in:
Thomas Martitz 2009-07-05 22:12:42 +00:00
parent 9431ea8c65
commit df6f955a82
3 changed files with 52 additions and 31 deletions

View file

@ -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,
};