comparison src/timidity/xmms-timidity.h @ 1882:eed7c270e8dd

Fix MILLIONS of Makefiles.
author Jonathan Schleifer <js@h3c.de>
date Wed, 26 Sep 2007 14:53:37 +0200
parents src/timidity/src/xmms-timidity.h@2419d6928017
children 6acf1bda788b
comparison
equal deleted inserted replaced
1881:8bdede3414cd 1882:eed7c270e8dd
1 /*
2 xmms-timidity - MIDI Plugin for XMMS
3 Copyright (C) 2004 Konstantin Korikov <lostclus@ua.fm>
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 */
19
20 #ifndef XMMS_TIMIDITY_H
21 #define XMMS_TIMIDITY_H
22
23 #include <audacious/plugin.h>
24 #include <audacious/vfs.h>
25
26 extern InputPlugin xmmstimid_ip;
27
28 static void xmmstimid_init(void);
29 static void xmmstimid_about(void);
30 static void xmmstimid_configure(void);
31 static int xmmstimid_is_our_fd( char * filename, VFSFile * fp );
32 static void xmmstimid_play_file(InputPlayback * playback);
33 static void xmmstimid_stop(InputPlayback * playback);
34 static void xmmstimid_pause(InputPlayback * playback, short p);
35 static void xmmstimid_seek(InputPlayback * playback, int time);
36 static int xmmstimid_get_time(InputPlayback * playback);
37 static void xmmstimid_cleanup(void);
38 static void xmmstimid_get_song_info(char *filename, char **title, int *length);
39
40 #endif