comparison src/xs_init.c @ 1:183e7cbc1036

Initial revision
author Matti Hamalainen <ccr@tnsp.org>
date Tue, 03 Jun 2003 10:23:04 +0000
parents
children 279b1e12df2b
comparison
equal deleted inserted replaced
0:5ce0a94edc2e 1:183e7cbc1036
1 /*
2 xmms-sid - SIDPlay input plugin for X MultiMedia System (XMMS)
3
4 Plugin initialization point
5
6 Written by Matti "ccr" Hamalainen <mhamalai@ratol.fi>
7
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
12
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
21 */
22
23 #include "xmms-sid.h"
24
25
26 InputPlugin xmms_sid_ip =
27 {
28 NULL,
29 NULL,
30 "xmms-sid SIDPlay plugin " VERSION,
31 xs_init,
32 xs_aboutbox,
33 xs_configure,
34 xs_is_our_file,
35 NULL,
36 xs_play_file,
37 xs_stop,
38 xs_pause,
39 xs_seek,
40 NULL, /* mpg123_set_eq, */
41 xs_get_time,
42 NULL, NULL, NULL,
43 NULL, NULL, NULL, NULL,
44 xs_get_song_info,
45 xs_file_info_box,
46 NULL
47 };
48
49
50
51 /*
52 * Return xmms-sid plugin information
53 */
54 InputPlugin * get_iplugin_info(void)
55 {
56 return &xmms_sid_ip;
57 }