comparison src/cue/cuesheet.c @ 1623:1aee1ff54c8b

get_tuple should be get_song_tuple
author William Pitcock <nenolod@atheme.org>
date Fri, 07 Sep 2007 04:36:12 -0500
parents 41286bab50dc
children 81ae3fcc9673
comparison
equal deleted inserted replaced
1622:b7665ebc9e1e 1623:1aee1ff54c8b
101 .pause = cue_pause, 101 .pause = cue_pause,
102 .seek = seek, 102 .seek = seek,
103 .get_time = get_time, 103 .get_time = get_time,
104 .cleanup = cue_cleanup, /* cleanup */ 104 .cleanup = cue_cleanup, /* cleanup */
105 .get_song_info = get_song_info, /* XXX get_song_info iface */ 105 .get_song_info = get_song_info, /* XXX get_song_info iface */
106 .get_tuple = get_tuple, 106 .get_song_tuple = get_tuple,
107 }; 107 };
108 108
109 InputPlugin *cue_iplist[] = { &cue_ip, NULL }; 109 InputPlugin *cue_iplist[] = { &cue_ip, NULL };
110 110
111 DECLARE_PLUGIN(cue, NULL, NULL, cue_iplist, NULL, NULL, NULL, NULL, NULL); 111 DECLARE_PLUGIN(cue, NULL, NULL, cue_iplist, NULL, NULL, NULL, NULL, NULL);