summaryrefslogtreecommitdiff
path: root/apps/plugin.h
diff options
context:
space:
mode:
authorWilliam Wilgus <wilgus.william@gmail.com>2021-08-19 22:00:36 -0400
committerWilliam Wilgus <me.theuser@yahoo.com>2021-08-26 12:55:34 +0000
commitb56372bbcb016376cf841fb81b1107832a3fada1 (patch)
tree32f0541dca539564502967af95ae3ac1cdf3704a /apps/plugin.h
parentcbf1970b563e5fd5ef5b20f7dde47db80343bd30 (diff)
downloadrockbox-b56372bbcb016376cf841fb81b1107832a3fada1.tar.gz
rockbox-b56372bbcb016376cf841fb81b1107832a3fada1.zip
Plugin Api add core bitmaps
share all the core icons with plugins these are all small mono icons like usb plug icon or play, fast forward, rewind icons --include the icon_helper function Change-Id: I385028815a4dd368515f491a9e19dee3d500252d
Diffstat (limited to 'apps/plugin.h')
-rw-r--r--apps/plugin.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/plugin.h b/apps/plugin.h
index bd467bcade..023b442295 100644
--- a/apps/plugin.h
+++ b/apps/plugin.h
@@ -188,6 +188,7 @@ struct plugin_api {
188 struct user_settings* global_settings; 188 struct user_settings* global_settings;
189 struct system_status *global_status; 189 struct system_status *global_status;
190 unsigned char **language_strings; 190 unsigned char **language_strings;
191 const struct cbmp_bitmap_info_entry *core_bitmaps;
191 192
192 /* lcd */ 193 /* lcd */
193 void (*splash)(int ticks, const char *str); 194 void (*splash)(int ticks, const char *str);
@@ -700,7 +701,7 @@ struct plugin_api {
700 void (*dsp_eq_enable)(bool enable); 701 void (*dsp_eq_enable)(bool enable);
701 void (*dsp_dither_enable)(bool enable); 702 void (*dsp_dither_enable)(bool enable);
702#ifdef HAVE_PITCHCONTROL 703#ifdef HAVE_PITCHCONTROL
703 void (*dsp_set_timestretch)(int32_t percent); 704 void (*dsp_set_timestretch)(int32_t percent);
704#endif 705#endif
705 intptr_t (*dsp_configure)(struct dsp_config *dsp, 706 intptr_t (*dsp_configure)(struct dsp_config *dsp,
706 unsigned int setting, intptr_t value); 707 unsigned int setting, intptr_t value);