summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/plugin.c1
-rw-r--r--apps/plugin.h1
2 files changed, 2 insertions, 0 deletions
diff --git a/apps/plugin.c b/apps/plugin.c
index 32cecc320f..a3970a88a7 100644
--- a/apps/plugin.c
+++ b/apps/plugin.c
@@ -792,6 +792,7 @@ static const struct plugin_api rockbox_api = {
792#ifdef PLUGIN_USE_IRAM 792#ifdef PLUGIN_USE_IRAM
793 audio_hard_stop, 793 audio_hard_stop,
794#endif 794#endif
795 crc_32r,
795 796
796 /* new stuff at the end, sort into place next time 797 /* new stuff at the end, sort into place next time
797 the API gets incompatible */ 798 the API gets incompatible */
diff --git a/apps/plugin.h b/apps/plugin.h
index 394a4dbbfd..64ced00bfa 100644
--- a/apps/plugin.h
+++ b/apps/plugin.h
@@ -919,6 +919,7 @@ struct plugin_api {
919#ifdef PLUGIN_USE_IRAM 919#ifdef PLUGIN_USE_IRAM
920 void (*audio_hard_stop)(void); 920 void (*audio_hard_stop)(void);
921#endif 921#endif
922 uint32_t (*crc_32r)(const void *src, uint32_t len, uint32_t crc32);
922 923
923 /* new stuff at the end, sort into place next time 924 /* new stuff at the end, sort into place next time
924 the API gets incompatible */ 925 the API gets incompatible */