summaryrefslogtreecommitdiff
path: root/docs/PLUGIN_API
diff options
context:
space:
mode:
authorTomer Shalev <shalev.tomer@gmail.com>2009-10-19 21:19:30 +0000
committerTomer Shalev <shalev.tomer@gmail.com>2009-10-19 21:19:30 +0000
commit5d585f4b9be0c3a5c6e669133ad0d9a01f8ffb62 (patch)
tree7ce435a09b4a52ac0b41b398ec3352edcfc7c115 /docs/PLUGIN_API
parent37daec75fb9412377c8670955ce641a6a812aa69 (diff)
downloadrockbox-5d585f4b9be0c3a5c6e669133ad0d9a01f8ffb62.tar.gz
rockbox-5d585f4b9be0c3a5c6e669133ad0d9a01f8ffb62.zip
Extract usb_screen logic out of screens.c into apps/gui/usb_screen.c
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@23273 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'docs/PLUGIN_API')
-rw-r--r--docs/PLUGIN_API4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/PLUGIN_API b/docs/PLUGIN_API
index 0498c0f2f3..a81bfed875 100644
--- a/docs/PLUGIN_API
+++ b/docs/PLUGIN_API
@@ -417,7 +417,7 @@ Kernel
417 time". This function is the entire foundation that our "cooperative 417 time". This function is the entire foundation that our "cooperative
418 multitasking" is based on. Use it. 418 multitasking" is based on. Use it.
419 419
420 void usb_screen(void); 420 void gui_usb_screen_run(void);
421 421
422 Show the usb connection screen. 422 Show the usb connection screen.
423 423
@@ -427,7 +427,7 @@ Kernel
427 427
428 int default_event_handler(int event); 428 int default_event_handler(int event);
429 429
430 If event == SYS_USB_CONNECTED, call usb_screen and return 430 If event == SYS_USB_CONNECTED, call gui_usb_screen_run and return
431 SYS_USB_CONNECTED. Else do nothing and return 0. 431 SYS_USB_CONNECTED. Else do nothing and return 0.
432 432
433 int create_thread(void* function, void* stack, int stack_size, 433 int create_thread(void* function, void* stack, int stack_size,