summaryrefslogtreecommitdiff
path: root/apps/plugin.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugin.h')
-rw-r--r--apps/plugin.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/apps/plugin.h b/apps/plugin.h
index 7ea1943395..de9984637f 100644
--- a/apps/plugin.h
+++ b/apps/plugin.h
@@ -133,7 +133,7 @@ void* plugin_get_buffer(size_t *buffer_size);
133#define PLUGIN_MAGIC 0x526F634B /* RocK */ 133#define PLUGIN_MAGIC 0x526F634B /* RocK */
134 134
135/* increase this every time the api struct changes */ 135/* increase this every time the api struct changes */
136#define PLUGIN_API_VERSION 173 136#define PLUGIN_API_VERSION 174
137 137
138/* update this to latest version if a change to the api struct breaks 138/* update this to latest version if a change to the api struct breaks
139 backwards compatibility (and please take the opportunity to sort in any 139 backwards compatibility (and please take the opportunity to sort in any
@@ -841,6 +841,10 @@ struct plugin_api {
841 const char *appsversion; 841 const char *appsversion;
842 /* new stuff at the end, sort into place next time 842 /* new stuff at the end, sort into place next time
843 the API gets incompatible */ 843 the API gets incompatible */
844
845 void (*pcmbuf_beep)(unsigned int frequency,
846 size_t duration,
847 int amplitude);
844}; 848};
845 849
846/* plugin header */ 850/* plugin header */