diff options
| author | Maurus Cuelenaere <mcuelenaere@gmail.com> | 2009-05-22 22:44:34 +0000 |
|---|---|---|
| committer | Maurus Cuelenaere <mcuelenaere@gmail.com> | 2009-05-22 22:44:34 +0000 |
| commit | 0f7e4e36aeb95f3e39a940d6e19748d910d40d92 (patch) | |
| tree | 72df574e93dc33babc1107da581c3b0e30837acc /apps/plugin.c | |
| parent | 475b5dc2bbddd31f4fee8935a0e903147e05fd08 (diff) | |
| download | rockbox-0f7e4e36aeb95f3e39a940d6e19748d910d40d92.zip rockbox-0f7e4e36aeb95f3e39a940d6e19748d910d40d92.tar.gz rockbox-0f7e4e36aeb95f3e39a940d6e19748d910d40d92.tar.bz2 rockbox-0f7e4e36aeb95f3e39a940d6e19748d910d40d92.tar.xz | |
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.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/plugin.c b/apps/plugin.c index f03b933..05a27ea 100644 --- a/apps/plugin.c +++ b/apps/plugin.c @@ -644,6 +644,10 @@ static const struct plugin_api rockbox_api = { appsversion, /* new stuff at the end, sort into place next time the API gets incompatible */ + +#ifdef HAVE_TOUCHSCREEN + action_get_touchscreen_press, +#endif }; int plugin_load(const char* plugin, const void* parameter) |