A modern Music Player Daemon based on Rockbox open source high quality audio player
libadwaita audio rust zig deno mpris rockbox mpd

Update comments in the helloword plugin.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27949 a1c6a512-1295-4272-9138-f99709370657

+5 -4
+5 -4
apps/plugins/helloworld.c
··· 18 18 * KIND, either express or implied. 19 19 * 20 20 ****************************************************************************/ 21 - #include "plugin.h" 22 21 23 22 /* welcome to the example rockbox plugin */ 24 23 25 - /* This macros must always be included. Should be placed at the top by 26 - convention, although the actual position doesn't matter */ 27 - 24 + /* mandatory include for all plugins */ 25 + #include "plugin.h" 28 26 29 27 /* this is the plugin entry point */ 30 28 enum plugin_status plugin_start(const void* parameter) ··· 33 31 this to avoid the compiler warning about it */ 34 32 (void)parameter; 35 33 34 + /* "rb->" marks a plugin api call. Rockbox offers many of its built-in 35 + * functions to plugins */ 36 36 /* now go ahead and have fun! */ 37 37 rb->splash(HZ*2, "Hello world!"); 38 38 39 + /* tell Rockbox that we have completed successfully */ 39 40 return PLUGIN_OK; 40 41 }