···1818 * KIND, either express or implied.
1919 *
2020 ****************************************************************************/
2121-#include "plugin.h"
22212322/* welcome to the example rockbox plugin */
24232525-/* This macros must always be included. Should be placed at the top by
2626- convention, although the actual position doesn't matter */
2727-2424+/* mandatory include for all plugins */
2525+#include "plugin.h"
28262927/* this is the plugin entry point */
3028enum plugin_status plugin_start(const void* parameter)
···3331 this to avoid the compiler warning about it */
3432 (void)parameter;
35333434+ /* "rb->" marks a plugin api call. Rockbox offers many of its built-in
3535+ * functions to plugins */
3636 /* now go ahead and have fun! */
3737 rb->splash(HZ*2, "Hello world!");
38383939+ /* tell Rockbox that we have completed successfully */
3940 return PLUGIN_OK;
4041}