summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/plugin.c1
-rw-r--r--apps/plugin.h3
2 files changed, 4 insertions, 0 deletions
diff --git a/apps/plugin.c b/apps/plugin.c
index e0932f4730..28577ab251 100644
--- a/apps/plugin.c
+++ b/apps/plugin.c
@@ -677,6 +677,7 @@ static const struct plugin_api rockbox_api = {
677#endif 677#endif
678 678
679 /* playback control */ 679 /* playback control */
680 playlist_get_current,
680 playlist_amount, 681 playlist_amount,
681 playlist_resume, 682 playlist_resume,
682 playlist_resume_track, 683 playlist_resume_track,
diff --git a/apps/plugin.h b/apps/plugin.h
index b152300f97..ee21291192 100644
--- a/apps/plugin.h
+++ b/apps/plugin.h
@@ -161,6 +161,8 @@ void* plugin_get_buffer(size_t *buffer_size);
161 new function which are "waiting" at the end of the function table) */ 161 new function which are "waiting" at the end of the function table) */
162#define PLUGIN_MIN_API_VERSION 239 162#define PLUGIN_MIN_API_VERSION 239
163 163
164/* 239 Marks the removal of ARCHOS HWCODEC and CHARCELL */
165
164/* plugin return codes */ 166/* plugin return codes */
165/* internal returns start at 0x100 to make exit(1..255) work */ 167/* internal returns start at 0x100 to make exit(1..255) work */
166#define INTERNAL_PLUGIN_RETVAL_START 0x100 168#define INTERNAL_PLUGIN_RETVAL_START 0x100
@@ -769,6 +771,7 @@ struct plugin_api {
769#endif 771#endif
770 772
771 /* playback control */ 773 /* playback control */
774 struct playlist_info* (*playlist_get_current)(void);
772 int (*playlist_amount)(void); 775 int (*playlist_amount)(void);
773 int (*playlist_resume)(void); 776 int (*playlist_resume)(void);
774 void (*playlist_resume_track)(int start_index, unsigned int crc, 777 void (*playlist_resume_track)(int start_index, unsigned int crc,