diff options
| author | Jonathan Gordon <rockbox@jdgordon.info> | 2007-07-22 06:05:53 +0000 |
|---|---|---|
| committer | Jonathan Gordon <rockbox@jdgordon.info> | 2007-07-22 06:05:53 +0000 |
| commit | f7675a244b0d1d52bfdf5a1ee0051b46e73f9f2e (patch) | |
| tree | a24862b74e4a16e971349a4f4b2975b93e45d5b4 /apps/action.h | |
| parent | 9d756e2760a0926aa416b22e276c4a5b2685e84e (diff) | |
| download | rockbox-f7675a244b0d1d52bfdf5a1ee0051b46e73f9f2e.zip rockbox-f7675a244b0d1d52bfdf5a1ee0051b46e73f9f2e.tar.gz rockbox-f7675a244b0d1d52bfdf5a1ee0051b46e73f9f2e.tar.bz2 rockbox-f7675a244b0d1d52bfdf5a1ee0051b46e73f9f2e.tar.xz | |
remove the need for action_signalscreenchange().
Fixes problems with targets where the ACTION_STD_CANCEL event is a combo
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13956 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/action.h')
| -rw-r--r-- | apps/action.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/apps/action.h b/apps/action.h index bd66fcf..7acaf9c 100644 --- a/apps/action.h +++ b/apps/action.h @@ -237,8 +237,6 @@ int get_custom_action(int context,int timeout, const struct button_mapping* (*get_context_map)(int)); /* use if one of the standard CONTEXT_ mappings will work (ALL the core should be using this! */ int get_action(int context, int timeout); -/* call this whenever you leave your button loop */ -void action_signalscreenchange(void); /* call this if you need to check for ACTION_STD_CANCEL only (i.e user abort! */ bool action_userabort(int timeout); @@ -253,8 +251,6 @@ bool is_keys_locked(void); If button != NULL it will be set to the actual button code */ #define ACTION_REMOTE 0x1 /* remote was pressed */ #define ACTION_REPEAT 0x2 /* action was repeated (NOT button) */ -#define ACTION_IGNORING 0x4 /* action_signalscreenchange() was called \ - waiting for BUTTON_REL */ int get_action_statuscode(int *button); |