diff options
| author | Jerome Kuptz <jeromekuptz@gmail.com> | 2003-07-20 21:29:16 +0000 |
|---|---|---|
| committer | Jerome Kuptz <jeromekuptz@gmail.com> | 2003-07-20 21:29:16 +0000 |
| commit | c7d42bbbd7641c8e9e06b28000c4c02c2ee36d21 (patch) | |
| tree | 6a8ad9d5ef9642c5a5b7371ef8f2fc772df1c8d7 /apps/plugin.h | |
| parent | cb2caf7e0d66956151b0e484f261f2ea932305ab (diff) | |
| download | rockbox-c7d42bbbd7641c8e9e06b28000c4c02c2ee36d21.zip rockbox-c7d42bbbd7641c8e9e06b28000c4c02c2ee36d21.tar.gz rockbox-c7d42bbbd7641c8e9e06b28000c4c02c2ee36d21.tar.bz2 rockbox-c7d42bbbd7641c8e9e06b28000c4c02c2ee36d21.tar.xz | |
update to the api to allow fetching of currently playing id3 struct. Adding the favorites plugin.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3854 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugin.h')
| -rw-r--r-- | apps/plugin.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/apps/plugin.h b/apps/plugin.h index dab3320..6926797 100644 --- a/apps/plugin.h +++ b/apps/plugin.h @@ -39,9 +39,10 @@ #include "font.h" #include "system.h" #include "lcd.h" - +#include "id3.h" +#include "mpeg.h" /* increase this every time the api struct changes */ -#define PLUGIN_API_VERSION 4 +#define PLUGIN_API_VERSION 5 /* plugin return codes */ enum plugin_status { @@ -162,6 +163,7 @@ struct plugin_api { void (*qsort)(void *base, size_t nmemb, size_t size, int(*compar)(const void *, const void *)); int (*kbd_input)(char* buffer, int buflen); + struct mp3entry* (*mpeg_current_track)(); }; /* defined by the plugin loader (plugin.c) */ |