Mercurial > audlegacy-plugins
comparison src/sid/xs_sidplay.h @ 2507:251336bee085
Cosmetic cleanups, synchronized from XMMS-SID.
author | Matti Hamalainen <ccr@tnsp.org> |
---|---|
date | Wed, 02 Apr 2008 19:53:39 +0300 |
parents | 6d90d40ca0c8 |
children | 1223e8510d8a |
comparison
equal
deleted
inserted
replaced
2506:28f3f1fc4001 | 2507:251336bee085 |
---|---|
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 |