comparison src/xmms-sid.h @ 73:2bc607888f53

Added libsidplay2 module, lots of reworking of internals, sidplay1 support now works with the new framework! Getting libsidplay2 support working shouldn't be too far now...
author Matti Hamalainen <ccr@tnsp.org>
date Sun, 14 Sep 2003 03:14:01 +0000
parents e3b205a6bc7e
children ab522ab65c85
comparison
equal deleted inserted replaced
72:e3b205a6bc7e 73:2bc607888f53
49 #define XS_MAX_OVERSAMPLE (8) /* Maximum oversampling factor */ 49 #define XS_MAX_OVERSAMPLE (8) /* Maximum oversampling factor */
50 50
51 extern InputPlugin xs_plugin_ip; /* XMMS-SID plugin structure */ 51 extern InputPlugin xs_plugin_ip; /* XMMS-SID plugin structure */
52 52
53 53
54
55 typedef struct { 54 typedef struct {
56 void *currConf; 55 void *player;
57 void *currEng; 56 gboolean isError, isPlaying, allowNext;
58 gboolean isError, isPlaying, allowNext; 57 gint currSong, nSongs;
59 gint currSong, nSongs; 58 gchar *currFileName;
60 void *currTune;
61 gchar *currFileName;
62 } t_xs_status; 59 } t_xs_status;
63 60
64 extern t_xs_status xs_status; 61 extern t_xs_status xs_status;
65 62
66 63