diff options
Diffstat (limited to 'apps/plugin.h')
-rw-r--r-- | apps/plugin.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/plugin.h b/apps/plugin.h index 20df7e72f2..286a5e2794 100644 --- a/apps/plugin.h +++ b/apps/plugin.h @@ -158,7 +158,7 @@ int plugin_open(const char *plugin, const char *parameter); #define PLUGIN_MAGIC 0x526F634B /* RocK */ /* increase this every time the api struct changes */ -#define PLUGIN_API_VERSION 264 +#define PLUGIN_API_VERSION 265 /* update this to latest version if a change to the api struct breaks backwards compatibility (and please take the opportunity to sort in any @@ -954,6 +954,7 @@ struct plugin_api { #ifdef HAVE_TAGCACHE bool (*tagtree_subentries_do_action)(bool (*action_cb)(const char *file_name)); #endif + void (*adjust_volume)(int steps); }; /* plugin header */ |