comparison src/xmms-sid.h @ 103:fe83646e6baa

Changed plrFillBuffer()-functions to return actual number of samples computed. Rudimentary changes for return of fileinfo window. Minor tweaks for STILdb.
author Matti Hamalainen <ccr@tnsp.org>
date Sun, 11 Jan 2004 17:42:00 +0000
parents 4614f58ab169
children 98a72c44f56b
comparison
equal deleted inserted replaced
102:cf3bbfdb90ac 103:fe83646e6baa
66 gchar *tuneTitle; 66 gchar *tuneTitle;
67 } t_xs_subtune; 67 } t_xs_subtune;
68 68
69 69
70 typedef struct { 70 typedef struct {
71 gchar *tuneFilename; 71 gchar *tuneFilename,
72 *tuneName,
73 *tuneComposer,
74 *tuneCopyright;
75
72 gint nsubTunes, startTune; 76 gint nsubTunes, startTune;
73 t_xs_subtune subTunes[XS_STIL_MAXENTRY]; 77 t_xs_subtune subTunes[XS_STIL_MAXENTRY];
74 } t_xs_tune; 78 } t_xs_tune;
75 79
76 80
95 void xs_stop(void); 99 void xs_stop(void);
96 void xs_pause(short); 100 void xs_pause(short);
97 void xs_seek(gint); 101 void xs_seek(gint);
98 gint xs_get_time(void); 102 gint xs_get_time(void);
99 void xs_get_song_info(gchar *, gchar **, gint *); 103 void xs_get_song_info(gchar *, gchar **, gint *);
100 //void xs_file_info_box(gchar *); 104 void xs_fileinfo(gchar *);
101 void xs_about(void); 105 void xs_about(void);
102 106
103 t_xs_tune *xs_tune_new(gchar *, gint, gint); 107 t_xs_tune *xs_tune_new(gchar *, gint, gint);
104 void xs_tune_free(t_xs_tune *); 108 void xs_tune_free(t_xs_tune *);
105 109