2005-03-02 23:49:38 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2005 Jens Arnold
|
|
|
|
*
|
2006-02-23 20:46:33 +00:00
|
|
|
* Overlay loader stub plugin for rockboy on Archos
|
2005-03-02 23:49:38 +00:00
|
|
|
*
|
|
|
|
* All files in this archive are subject to the GNU General Public License.
|
|
|
|
* See the file COPYING in the source tree root for full license agreement.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
#include "plugin.h"
|
|
|
|
|
|
|
|
#if MEM <= 8 && !defined(SIMULATOR)
|
|
|
|
|
2006-02-23 20:46:33 +00:00
|
|
|
#include "overlay.h"
|
2005-03-02 23:49:38 +00:00
|
|
|
|
2006-02-23 20:46:33 +00:00
|
|
|
PLUGIN_HEADER
|
2005-03-02 23:49:38 +00:00
|
|
|
|
|
|
|
/* this is the plugin entry point */
|
2008-05-13 09:57:56 +00:00
|
|
|
enum plugin_status plugin_start(const struct plugin_api* api, const void* parameter)
|
2005-03-02 23:49:38 +00:00
|
|
|
{
|
2007-08-06 13:42:52 +00:00
|
|
|
return run_overlay(api, parameter, PLUGIN_GAMES_DIR "/rockboy.ovl", "RockBoy");
|
2005-03-02 23:49:38 +00:00
|
|
|
}
|
|
|
|
#endif
|