summaryrefslogtreecommitdiff
path: root/apps/plugins/lua.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/lua.c')
-rw-r--r--apps/plugins/lua.c33
1 files changed, 33 insertions, 0 deletions
diff --git a/apps/plugins/lua.c b/apps/plugins/lua.c
new file mode 100644
index 0000000000..a68e5c149a
--- /dev/null
+++ b/apps/plugins/lua.c
@@ -0,0 +1,33 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 *
9 * Overlay loader stub plugin for lua
10 *
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License
13 * as published by the Free Software Foundation; either version 2
14 * of the License, or (at your option) any later version.
15 *
16 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
17 * KIND, either express or implied.
18 *
19 ****************************************************************************/
20#include "plugin.h"
21
22#if PLUGIN_BUFFER_SIZE >= 0x80000 && !defined(SIMULATOR)
23
24#include "lib/overlay.h"
25
26PLUGIN_HEADER
27
28/* this is the plugin entry point */
29enum plugin_status plugin_start(const void* parameter)
30{
31 return run_overlay(parameter, VIEWERS_DIR "/lua.ovl", "LuaViewer");
32}
33#endif