diff options
author | Michael Sevakis <jethead71@rockbox.org> | 2012-03-03 07:10:56 -0500 |
---|---|---|
committer | Michael Sevakis <jethead71@rockbox.org> | 2012-03-03 07:10:56 -0500 |
commit | f688710707f3af56a5949b8ae3957c9408b25392 (patch) | |
tree | 5e0a15f00d66337123406c09c207f531a4c18eca /apps/misc.h | |
parent | a92696d40d3515d4391ffba043894ebbad80cab6 (diff) |
Change keyclick_click so that it may accept raw buttons or actions.
Adds a new context, CONTEXT_RAWBUTTON, that I hope is out of the way
of everything. Unfortunately have to increment min plugin API version
for the second time today to accomodate additional parameter.
Change-Id: Iaa46b926e57cf377fd4906f2d42bb98e87215033
Diffstat (limited to 'apps/misc.h')
-rw-r--r-- | apps/misc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/misc.h b/apps/misc.h index a3d9ffd582..4ae7c19a32 100644 --- a/apps/misc.h +++ b/apps/misc.h @@ -148,7 +148,7 @@ void system_sound_play(enum system_sound sound); typedef bool (*keyclick_callback)(int action, void* data); void keyclick_set_callback(keyclick_callback cb, void* data); /* Produce keyclick based upon button and global settings */ -void keyclick_click(int action); +void keyclick_click(int context, int action); #endif /* CONFIG_CODEC == SWCODEC */ void push_current_activity(enum current_activity screen); |