summaryrefslogtreecommitdiff
path: root/apps/plugins/zxbox.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/zxbox.c')
-rw-r--r--apps/plugins/zxbox.c31
1 files changed, 31 insertions, 0 deletions
diff --git a/apps/plugins/zxbox.c b/apps/plugins/zxbox.c
new file mode 100644
index 0000000000..2f3ce97788
--- /dev/null
+++ b/apps/plugins/zxbox.c
@@ -0,0 +1,31 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 *
9 * Overlay loader stub plugin for zxbox on Archos
10 *
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.
13 *
14 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
15 * KIND, either express or implied.
16 *
17 ****************************************************************************/
18#include "plugin.h"
19
20#if MEM <= 8 && !defined(SIMULATOR)
21
22#include "overlay.h"
23
24PLUGIN_HEADER
25
26/* this is the plugin entry point */
27enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
28{
29 return run_overlay(api, parameter, "/.rockbox/viewers/zxbox.ovl", "ZXBox");
30}
31#endif