comparison src/xmms-sid.h @ 657:acaba070cf49

Lots of cosmetic code cleanups; synced the de-gettextification from Audacious-SID, I suppose it makes some sense ...
author Matti Hamalainen <ccr@tnsp.org>
date Wed, 02 Apr 2008 19:46:59 +0300
parents 91056492b156
children b0743dc9165d
comparison
equal deleted inserted replaced
656:e9257f006f41 657:acaba070cf49
129 #define XS_CS_STIL(M) M 129 #define XS_CS_STIL(M) M
130 #define XS_CS_FREE(M) 130 #define XS_CS_FREE(M)
131 131
132 /* Shorthands for linked lists 132 /* Shorthands for linked lists
133 */ 133 */
134 #define LPREV (pNode->pPrev) 134 #define LPREV (node->prev)
135 #define LTHIS (pNode) 135 #define LTHIS (node)
136 #define LNEXT (pNode->pNext) 136 #define LNEXT (node->next)
137 137
138 138
139 /* Plugin-wide typedefs 139 /* Plugin-wide typedefs
140 */ 140 */
141 typedef struct { 141 typedef struct {
142 gint tuneSpeed, 142 gint tuneSpeed,
143 tuneLength; 143 tuneLength;
144 gboolean tunePlayed; 144 gboolean tunePlayed;
145 } t_xs_subtuneinfo; 145 } xs_subtuneinfo_t;
146 146
147 147
148 typedef struct { 148 typedef struct {
149 gchar *sidFilename, 149 gchar *sidFilename,
150 *sidName, 150 *sidName,
155 initAddr, 155 initAddr,
156 playAddr, 156 playAddr,
157 dataFileLen, 157 dataFileLen,
158 sidModel; 158 sidModel;
159 gint nsubTunes, startTune; 159 gint nsubTunes, startTune;
160 t_xs_subtuneinfo *subTunes; 160 xs_subtuneinfo_t *subTunes;
161 } t_xs_tuneinfo; 161 } xs_tuneinfo_t;
162 162
163 163
164 /* Global variables 164 /* Global variables
165 */ 165 */
166 extern InputPlugin xs_plugin_ip; 166 extern InputPlugin xs_plugin_ip;