diff options
| author | Jens Arnold <amiconn@rockbox.org> | 2004-10-12 22:45:01 +0000 |
|---|---|---|
| committer | Jens Arnold <amiconn@rockbox.org> | 2004-10-12 22:45:01 +0000 |
| commit | 0dc52d5c362a6f416ca57f0afdbac49dc8824af2 (patch) | |
| tree | b34409540f7f5f30a5da6cc14d21d43dfa4f497a /apps/plugin.c | |
| parent | a7aa17ac1b83d7855c896f6937887cc8fcaa959a (diff) | |
| download | rockbox-0dc52d5c362a6f416ca57f0afdbac49dc8824af2.zip rockbox-0dc52d5c362a6f416ca57f0afdbac49dc8824af2.tar.gz rockbox-0dc52d5c362a6f416ca57f0afdbac49dc8824af2.tar.bz2 rockbox-0dc52d5c362a6f416ca57f0afdbac49dc8824af2.tar.xz | |
Extended default_event_handler() that calls a callback function prior to actually handling the event.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5263 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugin.c')
| -rw-r--r-- | apps/plugin.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/plugin.c b/apps/plugin.c index af67702..bf71aa1 100644 --- a/apps/plugin.c +++ b/apps/plugin.c @@ -262,6 +262,7 @@ static const struct plugin_api rockbox_api = { #ifndef SIMULATOR system_memory_guard, #endif + default_event_handler_ex, }; int plugin_load(const char* plugin, void* parameter) |