diff options
| author | Michiel Van Der Kolk <not.valid@email.address> | 2005-03-03 14:10:17 +0000 |
|---|---|---|
| committer | Michiel Van Der Kolk <not.valid@email.address> | 2005-03-03 14:10:17 +0000 |
| commit | 22ec198e41b138c9b5415fdc030ee93abf78df2f (patch) | |
| tree | c37935ba77f83031c6426a3d17be0bd89fea1ef3 /apps/plugin.c | |
| parent | f513da28c9ded2b2440d3e4f6e05b1b24b50c4e9 (diff) | |
| download | rockbox-22ec198e41b138c9b5415fdc030ee93abf78df2f.zip rockbox-22ec198e41b138c9b5415fdc030ee93abf78df2f.tar.gz rockbox-22ec198e41b138c9b5415fdc030ee93abf78df2f.tar.bz2 rockbox-22ec198e41b138c9b5415fdc030ee93abf78df2f.tar.xz | |
added button_hold() to the plugin api
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6115 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 38bc25b..e4c95cd 100644 --- a/apps/plugin.c +++ b/apps/plugin.c @@ -265,6 +265,10 @@ static const struct plugin_api rockbox_api = { #endif #endif PREFIX(mkdir), +#if CONFIG_KEYPAD == IRIVER_H100_PAD + button_hold, +#endif + }; int plugin_load(const char* plugin, void* parameter) |