summaryrefslogtreecommitdiff
path: root/apps/plugin.h
diff options
context:
space:
mode:
authorJonathan Gordon <rockbox@jdgordon.info>2007-07-22 06:05:53 +0000
committerJonathan Gordon <rockbox@jdgordon.info>2007-07-22 06:05:53 +0000
commitf7675a244b0d1d52bfdf5a1ee0051b46e73f9f2e (patch)
treea24862b74e4a16e971349a4f4b2975b93e45d5b4 /apps/plugin.h
parent9d756e2760a0926aa416b22e276c4a5b2685e84e (diff)
downloadrockbox-f7675a244b0d1d52bfdf5a1ee0051b46e73f9f2e.tar.gz
rockbox-f7675a244b0d1d52bfdf5a1ee0051b46e73f9f2e.zip
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/plugin.h')
-rw-r--r--apps/plugin.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/apps/plugin.h b/apps/plugin.h
index ac6988152a..db520c3b68 100644
--- a/apps/plugin.h
+++ b/apps/plugin.h
@@ -112,12 +112,12 @@
112#define PLUGIN_MAGIC 0x526F634B /* RocK */ 112#define PLUGIN_MAGIC 0x526F634B /* RocK */
113 113
114/* increase this every time the api struct changes */ 114/* increase this every time the api struct changes */
115#define PLUGIN_API_VERSION 63 115#define PLUGIN_API_VERSION 64
116 116
117/* update this to latest version if a change to the api struct breaks 117/* update this to latest version if a change to the api struct breaks
118 backwards compatibility (and please take the opportunity to sort in any 118 backwards compatibility (and please take the opportunity to sort in any
119 new function which are "waiting" at the end of the function table) */ 119 new function which are "waiting" at the end of the function table) */
120#define PLUGIN_MIN_API_VERSION 63 120#define PLUGIN_MIN_API_VERSION 64
121 121
122/* plugin return codes */ 122/* plugin return codes */
123enum plugin_status { 123enum plugin_status {
@@ -520,7 +520,6 @@ struct plugin_api {
520 int (*get_custom_action)(int context,int timeout, 520 int (*get_custom_action)(int context,int timeout,
521 const struct button_mapping* (*get_context_map)(int)); 521 const struct button_mapping* (*get_context_map)(int));
522 int (*get_action)(int context, int timeout); 522 int (*get_action)(int context, int timeout);
523 void (*action_signalscreenchange)(void);
524 bool (*action_userabort)(int timeout); 523 bool (*action_userabort)(int timeout);
525 524
526 /* power */ 525 /* power */