From 8ac3ae73c5f5a87dc4cddafe2b0d1a0f41e41bdd Mon Sep 17 00:00:00 2001 From: Jens Arnold Date: Fri, 3 Mar 2006 02:09:58 +0000 Subject: More 64bit simulator fixes, coinciding with the long policy this time. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8890 a1c6a512-1295-4272-9138-f99709370657 --- apps/codecs.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'apps/codecs.h') diff --git a/apps/codecs.h b/apps/codecs.h index cf0324b496..7a0fab297f 100644 --- a/apps/codecs.h +++ b/apps/codecs.h @@ -122,7 +122,7 @@ struct codec_api { bool reload_codec; /* If seek_time != 0, codec should seek to that song position (in ms) if codec supports seeking. */ - int seek_time; + long seek_time; /* Returns buffer to malloc array. Only codeclib should need this. */ void* (*get_codec_memory)(long *size); @@ -232,13 +232,13 @@ struct codec_api { #endif /* !SIMULATOR */ /* playback control */ - void (*PREFIX(audio_play))(int offset); + void (*PREFIX(audio_play))(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)(int newtime); + void (*audio_ff_rewind)(long newtime); struct mp3entry* (*audio_next_track)(void); int (*playlist_amount)(void); int (*audio_status)(void); -- cgit v1.2.3