diff options
| author | Thomas Martitz <kugel@rockbox.org> | 2010-08-30 20:58:38 +0000 |
|---|---|---|
| committer | Thomas Martitz <kugel@rockbox.org> | 2010-08-30 20:58:38 +0000 |
| commit | ce0d2b1d4746bb9e2dd23bedeb55c9a684edae75 (patch) | |
| tree | d4014ab689f9559c568e739f82793ac6b4c50090 /apps | |
| parent | da16248e47901c826a90291d2bb2a7aae78b209a (diff) | |
| download | rockbox-ce0d2b1d4746bb9e2dd23bedeb55c9a684edae75.zip rockbox-ce0d2b1d4746bb9e2dd23bedeb55c9a684edae75.tar.gz rockbox-ce0d2b1d4746bb9e2dd23bedeb55c9a684edae75.tar.bz2 rockbox-ce0d2b1d4746bb9e2dd23bedeb55c9a684edae75.tar.xz | |
Update comments in the helloword plugin.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27949 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/plugins/helloworld.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/apps/plugins/helloworld.c b/apps/plugins/helloworld.c index f1093f0..af55610 100644 --- a/apps/plugins/helloworld.c +++ b/apps/plugins/helloworld.c @@ -18,13 +18,11 @@ * KIND, either express or implied. * ****************************************************************************/ -#include "plugin.h" /* welcome to the example rockbox plugin */ -/* This macros must always be included. Should be placed at the top by - convention, although the actual position doesn't matter */ - +/* mandatory include for all plugins */ +#include "plugin.h" /* this is the plugin entry point */ enum plugin_status plugin_start(const void* parameter) @@ -33,8 +31,11 @@ enum plugin_status plugin_start(const void* parameter) this to avoid the compiler warning about it */ (void)parameter; + /* "rb->" marks a plugin api call. Rockbox offers many of its built-in + * functions to plugins */ /* now go ahead and have fun! */ rb->splash(HZ*2, "Hello world!"); + /* tell Rockbox that we have completed successfully */ return PLUGIN_OK; } |