summaryrefslogtreecommitdiff
path: root/firmware/export/mp3_playback.h
diff options
context:
space:
mode:
authorNils Wallménius <nils@rockbox.org>2007-06-13 15:35:07 +0000
committerNils Wallménius <nils@rockbox.org>2007-06-13 15:35:07 +0000
commitc7f9ca4067f26ba3d0471d50ed3f06b047171b50 (patch)
tree9bfaf2d5019c075ad97540a2beed8d68277ca021 /firmware/export/mp3_playback.h
parentf50bd1151a65b1aeefaeab545187fba29881b800 (diff)
downloadrockbox-c7f9ca4067f26ba3d0471d50ed3f06b047171b50.tar.gz
rockbox-c7f9ca4067f26ba3d0471d50ed3f06b047171b50.zip
Accept FS#7264 'Build with -Os switch for coldfire targets'.
Introduces MEM_FUNCTION_WRAPPERS(api) macro which adds wrappers functions to a plugin to make plugins link correctly when gcc calls mem* functions directly. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13625 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/export/mp3_playback.h')
-rw-r--r--firmware/export/mp3_playback.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/export/mp3_playback.h b/firmware/export/mp3_playback.h
index 772eafe971..d766608aec 100644
--- a/firmware/export/mp3_playback.h
+++ b/firmware/export/mp3_playback.h
@@ -39,7 +39,7 @@ void demand_irq_enable(bool on);
39/* new functions, exported to plugin API */ 39/* new functions, exported to plugin API */
40void mp3_play_init(void); 40void mp3_play_init(void);
41void mp3_play_data(const unsigned char* start, int size, 41void mp3_play_data(const unsigned char* start, int size,
42 void (*get_more)(unsigned char** start, int* size) /* callback fn */ 42 void (*get_more)(unsigned char** start, size_t* size) /* callback fn */
43); 43);
44void mp3_play_pause(bool play); 44void mp3_play_pause(bool play);
45bool mp3_pause_done(void); 45bool mp3_pause_done(void);