comparison src/xmms-sid.h @ 459:023fed5602f3

Updates.
author Matti Hamalainen <ccr@tnsp.org>
date Wed, 24 Jan 2007 22:08:02 +0000
parents f277dad3180f
children ba98fdac6307
comparison
equal deleted inserted replaced
458:57836945fa71 459:023fed5602f3
199 if xs_cfg.oversampleEnable == TRUE and 199 if xs_cfg.oversampleEnable == TRUE and
200 emulation backend supports oversampling. 200 emulation backend supports oversampling.
201 */ 201 */
202 void *sidEngine; /* SID-emulation internal engine data */ 202 void *sidEngine; /* SID-emulation internal engine data */
203 t_xs_player *sidPlayer; /* Selected player engine */ 203 t_xs_player *sidPlayer; /* Selected player engine */
204 gboolean isError, isPlaying, isInit; 204 gboolean isError, isPlaying, isInitialized;
205 gint currSong, /* Current sub-tune */ 205 gint currSong, /* Current sub-tune */
206 lastTime; 206 lastTime;
207 207
208 t_xs_tuneinfo *tuneInfo; 208 t_xs_tuneinfo *tuneInfo;
209 } t_xs_status; 209 } t_xs_status;
231 gint xs_get_time(void); 231 gint xs_get_time(void);
232 void xs_get_song_info(gchar *, gchar **, gint *); 232 void xs_get_song_info(gchar *, gchar **, gint *);
233 void xs_about(void); 233 void xs_about(void);
234 234
235 235
236 t_xs_tuneinfo *xs_tuneinfo_new(const gchar *, gint, gint, 236 t_xs_tuneinfo *xs_tuneinfo_new(const gchar * pcFilename,
237 const gchar *, const gchar *, const gchar *, 237 gint nsubTunes, gint startTune, const gchar * sidName,
238 gint, gint, gint, gint, const gchar *); 238 const gchar * sidComposer, const gchar * sidCopyright,
239 239 gint loadAddr, gint initAddr, gint playAddr,
240 gint dataFileLen, const gchar *sidFormat,
241 gint sidModel, gint songSpeed, gint clockSpeed);
240 void xs_tuneinfo_free(t_xs_tuneinfo *); 242 void xs_tuneinfo_free(t_xs_tuneinfo *);
241 243
242 void xs_error(const char *, ...); 244 void xs_error(const char *, ...);
243 245
244 246