comparison src/audacious/pluginenum.c @ 4625:8c36787807de

remove some old unused functions from plugin API
author mf0102 <0102@gmx.at>
date Tue, 10 Jun 2008 00:51:39 +0200
parents 5523b30cb122
children cbc9965e1552
comparison
equal deleted inserted replaced
4624:5523b30cb122 4625:8c36787807de
230 230
231 .playlist_fileinfo_current = ui_fileinfo_show_current, 231 .playlist_fileinfo_current = ui_fileinfo_show_current,
232 .playlist_fileinfo = ui_fileinfo_show, 232 .playlist_fileinfo = ui_fileinfo_show,
233 233
234 .playlist_delete_index = playlist_delete_index, 234 .playlist_delete_index = playlist_delete_index,
235 .playlist_delete_filenames = NULL, /* remove eventually --mf0102 */
236 235
237 .playlist_get_entry_to_play = playlist_get_entry_to_play, 236 .playlist_get_entry_to_play = playlist_get_entry_to_play,
238 237
239 .playlist_get_filename = playlist_get_filename, 238 .playlist_get_filename = playlist_get_filename,
240 .playlist_get_songtitle = playlist_get_songtitle, 239 .playlist_get_songtitle = playlist_get_songtitle,
301 .drct_main_win_toggle = drct_main_win_toggle, 300 .drct_main_win_toggle = drct_main_win_toggle,
302 .drct_eq_win_is_visible = drct_eq_win_is_visible, 301 .drct_eq_win_is_visible = drct_eq_win_is_visible,
303 .drct_eq_win_toggle = drct_eq_win_toggle, 302 .drct_eq_win_toggle = drct_eq_win_toggle,
304 .drct_pl_win_is_visible = drct_pl_win_is_visible, 303 .drct_pl_win_is_visible = drct_pl_win_is_visible,
305 .drct_pl_win_toggle = drct_pl_win_toggle, 304 .drct_pl_win_toggle = drct_pl_win_toggle,
306 .drct_set_skin = NULL, /* remove someday. --mf0102 */
307 .drct_activate = drct_activate, 305 .drct_activate = drct_activate,
308 306
309 .drct_initiate = drct_initiate, 307 .drct_initiate = drct_initiate,
310 .drct_play = drct_play, 308 .drct_play = drct_play,
311 .drct_pause = drct_pause, 309 .drct_pause = drct_pause,
371 .effect_flow = effect_flow, 369 .effect_flow = effect_flow,
372 .volumecontrol_flow = volumecontrol_flow, 370 .volumecontrol_flow = volumecontrol_flow,
373 371
374 .util_menu_main_show = util_menu_main_show, 372 .util_menu_main_show = util_menu_main_show,
375 373
376 #if 0
377 .get_dock_window_list = get_dock_window_list,
378 .dock_add_window = dock_add_window,
379 .dock_remove_window = dock_remove_window,
380 .dock_move_press = dock_move_press,
381 .dock_move_motion = dock_move_motion,
382 .dock_move_release = dock_move_release,
383 .dock_is_moving = dock_is_moving,
384 #endif
385
386 .get_output_list = get_output_list, 374 .get_output_list = get_output_list,
387 375
388 .input_get_volume = input_get_volume, 376 .input_get_volume = input_get_volume,
389 .construct_uri = construct_uri, 377 .construct_uri = construct_uri,
390 .uri_to_display_basename = uri_to_display_basename, 378 .uri_to_display_basename = uri_to_display_basename,
557 /* Pretty const casts courtesy of XMMS's plugin.h legacy. Anyone 545 /* Pretty const casts courtesy of XMMS's plugin.h legacy. Anyone
558 else thinks we could use a CONST macro to solve the warnings? 546 else thinks we could use a CONST macro to solve the warnings?
559 - descender */ 547 - descender */
560 p->set_info = (void (*)(gchar *, gint, gint, gint, gint)) playlist_set_info_old_abi; 548 p->set_info = (void (*)(gchar *, gint, gint, gint, gint)) playlist_set_info_old_abi;
561 p->set_info_text = input_set_info_text; 549 p->set_info_text = input_set_info_text;
562 p->set_status_buffering = NULL; /* XXX: remove this someday --mf0102 */
563 550
564 ip_data.input_list = g_list_append(ip_data.input_list, p); 551 ip_data.input_list = g_list_append(ip_data.input_list, p);
565 552
566 p->enabled = TRUE; 553 p->enabled = TRUE;
567 554