comparison src/timidity/src/xmms-timidity.c @ 1693:62e89e392227

Branch merge.
author Matti Hamalainen <ccr@tnsp.org>
date Sat, 08 Sep 2007 06:58:08 +0300
parents d158ce84fda7 53adc480f9a7
children f35f9d6fcb6d
comparison
equal deleted inserted replaced
1692:81ae3fcc9673 1693:62e89e392227
35 35
36 #include "xmms-timidity.h" 36 #include "xmms-timidity.h"
37 #include "interface.h" 37 #include "interface.h"
38 38
39 InputPlugin xmmstimid_ip = { 39 InputPlugin xmmstimid_ip = {
40 NULL, 40 .description = "TiMidity Audio Plugin",
41 NULL, 41 .init = xmmstimid_init,
42 "TiMidity Audio Plugin", 42 .about = xmmstimid_about,
43 xmmstimid_init, 43 .configure = xmmstimid_configure,
44 xmmstimid_about, 44 .play_file = xmmstimid_play_file,
45 xmmstimid_configure, 45 .stop = xmmstimid_stop,
46 NULL, 46 .pause = xmmstimid_pause,
47 NULL, 47 .seek = xmmstimid_seek,
48 xmmstimid_play_file, 48 .get_time = xmmstimid_get_time,
49 xmmstimid_stop, 49 .cleanup = xmmstimid_cleanup,
50 xmmstimid_pause, 50 .get_song_info = xmmstimid_get_song_info,
51 xmmstimid_seek, 51 .is_our_file_from_vfs = xmmstimid_is_our_fd,
52 NULL,
53 xmmstimid_get_time,
54 NULL,
55 NULL,
56 xmmstimid_cleanup,
57 NULL,
58 NULL,
59 NULL,
60 NULL,
61 xmmstimid_get_song_info,
62 NULL,
63 NULL,
64 NULL,
65 NULL,
66 NULL,
67 xmmstimid_is_our_fd,
68 }; 52 };
69 53
70 InputPlugin *timidity_iplist[] = { &xmmstimid_ip, NULL }; 54 InputPlugin *timidity_iplist[] = { &xmmstimid_ip, NULL };
71 55
72 DECLARE_PLUGIN(timidity, NULL, NULL, timidity_iplist, NULL, NULL, NULL, NULL, NULL); 56 DECLARE_PLUGIN(timidity, NULL, NULL, timidity_iplist, NULL, NULL, NULL, NULL, NULL);