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, 4 insertions, 2 deletions
diff --git a/apps/plugin.h b/apps/plugin.h
index dab3320b2a..6926797cba 100644
--- a/apps/plugin.h
+++ b/apps/plugin.h
@@ -39,9 +39,10 @@
39#include "font.h" 39#include "font.h"
40#include "system.h" 40#include "system.h"
41#include "lcd.h" 41#include "lcd.h"
42 42#include "id3.h"
43#include "mpeg.h"
43/* increase this every time the api struct changes */ 44/* increase this every time the api struct changes */
44#define PLUGIN_API_VERSION 4 45#define PLUGIN_API_VERSION 5
45 46
46/* plugin return codes */ 47/* plugin return codes */
47enum plugin_status { 48enum plugin_status {
@@ -162,6 +163,7 @@ struct plugin_api {
162 void (*qsort)(void *base, size_t nmemb, size_t size, 163 void (*qsort)(void *base, size_t nmemb, size_t size,
163 int(*compar)(const void *, const void *)); 164 int(*compar)(const void *, const void *));
164 int (*kbd_input)(char* buffer, int buflen); 165 int (*kbd_input)(char* buffer, int buflen);
166 struct mp3entry* (*mpeg_current_track)();
165}; 167};
166 168
167/* defined by the plugin loader (plugin.c) */ 169/* defined by the plugin loader (plugin.c) */