Fix yellow
[Rockbox.git] / apps / plugins / zxbox.c
blob61d9eea4ace2620168971eef8ec5da81b69241f0
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
9 * Overlay loader stub plugin for zxbox on Archos
11 * All files in this archive are subject to the GNU General Public License.
12 * See the file COPYING in the source tree root for full license agreement.
14 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
15 * KIND, either express or implied.
17 ****************************************************************************/
18 #include "plugin.h"
20 #if MEM <= 8 && !defined(SIMULATOR)
22 #include "overlay.h"
24 PLUGIN_HEADER
26 /* this is the plugin entry point */
27 enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
29 return run_overlay(api, parameter, PLUGIN_APPS_DIR "/zxbox.ovl", "ZXBox");
31 #endif