comparison src/xs_sidplay1.h @ 526:fa95d942f226

Header cleanup; Moved some types from xmms-sid.h to xs_player.h; Renamed few functions.
author Matti Hamalainen <ccr@tnsp.org>
date Tue, 20 Feb 2007 16:53:05 +0000
parents 9dafc55c4270
children 36ccf30d3d22
comparison
equal deleted inserted replaced
525:9395961504c1 526:fa95d942f226
1 #ifndef _XS_SIDPLAY1_H 1 #ifndef XS_SIDPLAY1_H
2 #define _XS_SIDPLAY1_H 2 #define XS_SIDPLAY1_H
3 3
4 #include "xmms-sid.h" 4 #include "xs_player.h"
5 #include "xs_support.h" 5 #include "xs_support.h"
6
7 /* Maximum audio frequency supported by libSIDPlay v1 */
8 #define SIDPLAY1_MAX_FREQ (48000)
9 6
10 #ifdef __cplusplus 7 #ifdef __cplusplus
11 extern "C" { 8 extern "C" {
12 #endif 9 #endif
13 10
14 gboolean xs_sidplay1_isourfile(t_xs_file *); 11 gboolean xs_sidplay1_probe(t_xs_file *);
15 void xs_sidplay1_close(t_xs_status *); 12 void xs_sidplay1_close(t_xs_status *);
16 gboolean xs_sidplay1_init(t_xs_status *); 13 gboolean xs_sidplay1_init(t_xs_status *);
17 gboolean xs_sidplay1_initsong(t_xs_status *); 14 gboolean xs_sidplay1_initsong(t_xs_status *);
18 guint xs_sidplay1_fillbuffer(t_xs_status *, gchar *, guint); 15 guint xs_sidplay1_fillbuffer(t_xs_status *, gchar *, guint);
19 gboolean xs_sidplay1_load(t_xs_status *, gchar *); 16 gboolean xs_sidplay1_load(t_xs_status *, gchar *);
22 gboolean xs_sidplay1_updateinfo(t_xs_status *); 19 gboolean xs_sidplay1_updateinfo(t_xs_status *);
23 20
24 #ifdef __cplusplus 21 #ifdef __cplusplus
25 } 22 }
26 #endif 23 #endif
27 #endif /* _XS_SIDPLAY1_H */ 24 #endif /* XS_SIDPLAY1_H */