diff options
Diffstat (limited to 'apps/plugin.h')
-rw-r--r-- | apps/plugin.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/plugin.h b/apps/plugin.h index c14b06f487..e16959681c 100644 --- a/apps/plugin.h +++ b/apps/plugin.h | |||
@@ -110,7 +110,7 @@ | |||
110 | #define PLUGIN_MAGIC 0x526F634B /* RocK */ | 110 | #define PLUGIN_MAGIC 0x526F634B /* RocK */ |
111 | 111 | ||
112 | /* increase this every time the api struct changes */ | 112 | /* increase this every time the api struct changes */ |
113 | #define PLUGIN_API_VERSION 47 | 113 | #define PLUGIN_API_VERSION 48 |
114 | 114 | ||
115 | /* update this to latest version if a change to the api struct breaks | 115 | /* update this to latest version if a change to the api struct breaks |
116 | backwards compatibility (and please take the opportunity to sort in any | 116 | backwards compatibility (and please take the opportunity to sort in any |
@@ -598,6 +598,9 @@ struct plugin_api { | |||
598 | bool (*detect_flashed_ramimage)(void); | 598 | bool (*detect_flashed_ramimage)(void); |
599 | bool (*detect_flashed_romimage)(void); | 599 | bool (*detect_flashed_romimage)(void); |
600 | #endif | 600 | #endif |
601 | int (*playlist_resume)(void); | ||
602 | int (*playlist_start)(int start_index, int offset); | ||
603 | struct system_status *global_status; | ||
601 | }; | 604 | }; |
602 | 605 | ||
603 | /* plugin header */ | 606 | /* plugin header */ |