comparison src/xs_init.c @ 723:9321ffa2ea7e

Update copyright years.
author Matti Hamalainen <ccr@tnsp.org>
date Tue, 10 Feb 2009 03:34:11 +0200
parents b0743dc9165d
children
comparison
equal deleted inserted replaced
722:5923dfff1fac 723:9321ffa2ea7e
2 XMMS-SID - SIDPlay input plugin for X MultiMedia System (XMMS) 2 XMMS-SID - SIDPlay input plugin for X MultiMedia System (XMMS)
3 3
4 Plugin initialization point 4 Plugin initialization point
5 5
6 Programmed and designed by Matti 'ccr' Hamalainen <ccr@tnsp.org> 6 Programmed and designed by Matti 'ccr' Hamalainen <ccr@tnsp.org>
7 (C) Copyright 1999-2007 Tecnic Software productions (TNSP) 7 (C) Copyright 1999-2009 Tecnic Software productions (TNSP)
8 8
9 This program is free software; you can redistribute it and/or modify 9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by 10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or 11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version. 12 (at your option) any later version.
24 #include "xs_config.h" 24 #include "xs_config.h"
25 #include "xs_fileinfo.h" 25 #include "xs_fileinfo.h"
26 26
27 27
28 InputPlugin xs_plugin_ip = { 28 InputPlugin xs_plugin_ip = {
29 NULL, /* FILLED BY XMMS */ 29 NULL, /* FILLED BY XMMS */
30 NULL, /* FILLED BY XMMS */ 30 NULL, /* FILLED BY XMMS */
31 PACKAGE_STRING, /* Plugin description */ 31 PACKAGE_STRING, /* Plugin description */
32 xs_init, /* Initialization */ 32 xs_init, /* Initialization */
33 xs_about, /* Show aboutbox */ 33 xs_about, /* Show aboutbox */
34 xs_configure, /* Show/edit configuration */ 34 xs_configure, /* Show/edit configuration */
35 xs_is_our_file, /* Check file */ 35 xs_is_our_file, /* Check file */
36 NULL, /* Scan directory */ 36 NULL, /* Scan directory */
37 xs_play_file, /* Play given file */ 37 xs_play_file, /* Play given file */
38 xs_stop, /* Stop playing */ 38 xs_stop, /* Stop playing */
39 xs_pause, /* Pause playing */ 39 xs_pause, /* Pause playing */
40 xs_seek, /* Seek time */ 40 xs_seek, /* Seek time */
41 NULL, /* Set equalizer */ 41 NULL, /* Set equalizer */
42 xs_get_time, /* Get playing time */ 42 xs_get_time, /* Get playing time */
43 NULL, /* Get volume */ 43 NULL, /* Get volume */
44 NULL, /* Set volume */ 44 NULL, /* Set volume */
45 xs_close, /* Cleanup */ 45 xs_close, /* Cleanup */
46 NULL, /* OBSOLETE! */ 46 NULL, /* OBSOLETE! */
47 NULL, /* Send data to Visualization plugin */ 47 NULL, /* Send data to Visualization plugin */
48 NULL, NULL, /* FILLED BY XMMS */ 48 NULL, NULL, /* FILLED BY XMMS */
49 xs_get_song_info, /* Get song title and length */ 49 xs_get_song_info, /* Get song title and length */
50 xs_fileinfo, /* Show file-information dialog */ 50 xs_fileinfo, /* Show file-information dialog */
51 NULL /* FILLED BY XMMS */ 51 NULL /* FILLED BY XMMS */
52 }; 52 };
53 53
54 54
55 55
56 /* 56 /*