2003-06-29 16:33:04 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
2008-05-05 10:32:46 +00:00
|
|
|
* Copyright (C) 2002 Björn Stenberg
|
2003-06-29 16:33:04 +00:00
|
|
|
*
|
2008-06-28 18:10:04 +00:00
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
2003-06-29 16:33:04 +00:00
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/* welcome to the example rockbox plugin */
|
|
|
|
|
2010-08-30 20:58:38 +00:00
|
|
|
/* mandatory include for all plugins */
|
|
|
|
#include "plugin.h"
|
2006-01-15 18:20:18 +00:00
|
|
|
|
2003-06-29 16:33:04 +00:00
|
|
|
/* this is the plugin entry point */
|
2009-01-16 10:34:40 +00:00
|
|
|
enum plugin_status plugin_start(const void* parameter)
|
2003-06-29 16:33:04 +00:00
|
|
|
{
|
|
|
|
/* if you don't use the parameter, you can do like
|
|
|
|
this to avoid the compiler warning about it */
|
|
|
|
(void)parameter;
|
|
|
|
|
2010-08-30 20:58:38 +00:00
|
|
|
/* "rb->" marks a plugin api call. Rockbox offers many of its built-in
|
|
|
|
* functions to plugins */
|
2003-06-29 16:33:04 +00:00
|
|
|
/* now go ahead and have fun! */
|
2007-03-16 21:56:08 +00:00
|
|
|
rb->splash(HZ*2, "Hello world!");
|
2003-06-29 16:33:04 +00:00
|
|
|
|
2010-08-30 20:58:38 +00:00
|
|
|
/* tell Rockbox that we have completed successfully */
|
2003-06-29 16:33:04 +00:00
|
|
|
return PLUGIN_OK;
|
|
|
|
}
|