diff options
| author | Steve Bavin <pondlife@pondlife.me> | 2008-03-28 11:24:24 +0000 |
|---|---|---|
| committer | Steve Bavin <pondlife@pondlife.me> | 2008-03-28 11:24:24 +0000 |
| commit | c9df8fd87ba80a3c0d719e76ca68cb829a505b11 (patch) | |
| tree | cf4493629cd7e960d60f19fa1fc87b2e5b4945b3 /apps/plugin.h | |
| parent | f54def9dd59db89a0a7cd304cbcd78d9c6a209ee (diff) | |
| download | rockbox-c9df8fd87ba80a3c0d719e76ca68cb829a505b11.zip rockbox-c9df8fd87ba80a3c0d719e76ca68cb829a505b11.tar.gz rockbox-c9df8fd87ba80a3c0d719e76ca68cb829a505b11.tar.bz2 rockbox-c9df8fd87ba80a3c0d719e76ca68cb829a505b11.tar.xz | |
The const police raid playback.c, should be no change to behaviour.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16860 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugin.h')
| -rw-r--r-- | apps/plugin.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugin.h b/apps/plugin.h index 27fcffb..d6aed5d 100644 --- a/apps/plugin.h +++ b/apps/plugin.h @@ -521,13 +521,13 @@ struct plugin_api { int (*playlist_amount)(void); int (*playlist_resume)(void); int (*playlist_start)(int start_index, int offset); - void (*PREFIX(audio_play))(long offset); + void (*PREFIX(audio_play))(const long offset); void (*audio_stop)(void); void (*audio_pause)(void); void (*audio_resume)(void); void (*audio_next)(void); void (*audio_prev)(void); - void (*audio_ff_rewind)(long newtime); + void (*audio_ff_rewind)(const long newtime); struct mp3entry* (*audio_next_track)(void); int (*audio_status)(void); bool (*audio_has_changed_track)(void); |