comparison src/xs_sidplay.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 eafcd84a8c59
children b0743dc9165d
comparison
equal deleted inserted replaced
656:e9257f006f41 657:acaba070cf49
24 24
25 /* This function gets most of the information, though we do miss some 25 /* This function gets most of the information, though we do miss some
26 * (those variables that are only set by libSIDPlay when tune is initialized). 26 * (those variables that are only set by libSIDPlay when tune is initialized).
27 * Rest of the information is acquired in TFUNCTION2() 27 * Rest of the information is acquired in TFUNCTION2()
28 */ 28 */
29 t_xs_tuneinfo *TFUNCTION(const gchar *sidFilename) 29 xs_tuneinfo_t *TFUNCTION(const gchar *sidFilename)
30 { 30 {
31 t_xs_tuneinfo *pResult; 31 xs_tuneinfo_t *pResult;
32 TTUNEINFO myInfo; 32 TTUNEINFO myInfo;
33 TTUNE *myTune; 33 TTUNE *myTune;
34 guint8 *buf = NULL; 34 guint8 *buf = NULL;
35 size_t bufSize = 0; 35 size_t bufSize = 0;
36 36
80 } 80 }
81 81
82 82
83 /* Updates the information of currently playing tune 83 /* Updates the information of currently playing tune
84 */ 84 */
85 gboolean TFUNCTION2(t_xs_status *myStatus) 85 gboolean TFUNCTION2(xs_status_t *myStatus)
86 { 86 {
87 TTUNEINFO myInfo; 87 TTUNEINFO myInfo;
88 TTUNE *myTune; 88 TTUNE *myTune;
89 TENGINE *myEngine; 89 TENGINE *myEngine;
90 t_xs_tuneinfo *i; 90 xs_tuneinfo_t *i;
91 91
92 /* Check if we have required structures initialized */ 92 /* Check if we have required structures initialized */
93 if (!myStatus || !myStatus->tuneInfo || !myStatus->sidEngine) 93 if (!myStatus || !myStatus->tuneInfo || !myStatus->sidEngine)
94 return FALSE; 94 return FALSE;
95 95