summaryrefslogtreecommitdiff
path: root/apps/plugin.c
diff options
context:
space:
mode:
authorMaurus Cuelenaere <mcuelenaere@gmail.com>2009-05-22 22:44:34 +0000
committerMaurus Cuelenaere <mcuelenaere@gmail.com>2009-05-22 22:44:34 +0000
commit0f7e4e36aeb95f3e39a940d6e19748d910d40d92 (patch)
tree72df574e93dc33babc1107da581c3b0e30837acc /apps/plugin.c
parent475b5dc2bbddd31f4fee8935a0e903147e05fd08 (diff)
downloadrockbox-0f7e4e36aeb95f3e39a940d6e19748d910d40d92.tar.gz
rockbox-0f7e4e36aeb95f3e39a940d6e19748d910d40d92.zip
Lua:
* add action_get_touchscreen_press wrapper * fix kbd_input wrapper * rework luaL_loadfile * add rb.contexts git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21046 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugin.c')
-rw-r--r--apps/plugin.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/plugin.c b/apps/plugin.c
index f03b9337f9..05a27ea591 100644
--- a/apps/plugin.c
+++ b/apps/plugin.c
@@ -644,6 +644,10 @@ static const struct plugin_api rockbox_api = {
644 appsversion, 644 appsversion,
645 /* new stuff at the end, sort into place next time 645 /* new stuff at the end, sort into place next time
646 the API gets incompatible */ 646 the API gets incompatible */
647
648#ifdef HAVE_TOUCHSCREEN
649 action_get_touchscreen_press,
650#endif
647}; 651};
648 652
649int plugin_load(const char* plugin, const void* parameter) 653int plugin_load(const char* plugin, const void* parameter)