/* DeaDBeeF - ultimate music player for GNU/Linux systems with X11 Copyright (C) 2009-2010 Alexey Yakovenko This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #ifndef __PLUGINS_H #define __PLUGINS_H #include "deadbeef.h" extern DB_functions_t *deadbeef; void plug_load_all (void); void plug_unload_all (void); void plug_ev_subscribe (DB_plugin_t *plugin, int ev, DB_callback_t callback, uintptr_t data); void plug_ev_unsubscribe (DB_plugin_t *plugin, int ev, DB_callback_t callback, uintptr_t data); void plug_trigger_event (int ev, uintptr_t param); void plug_trigger_event_trackchange (int from, int to); void plug_trigger_event_trackinfochanged (int trk); void plug_trigger_event_paused (int paused); void plug_trigger_event_playlistchanged (void); void plug_trigger_event_volumechanged (void); void plug_md5 (uint8_t sig[16], const char *in, int len); void plug_md5_to_str (char *str, const uint8_t sig[16]); void plug_playback_next (void); void plug_playback_prev (void); void plug_playback_pause (void); void plug_playback_stop (void); void plug_playback_play (void); void plug_playback_random (void); void plug_quit (void); float plug_playback_get_pos (void); void plug_playback_set_pos (float pos); struct DB_plugin_s ** plug_get_list (void); struct DB_decoder_s ** plug_get_decoder_list (void); struct DB_output_s ** plug_get_output_list (void); struct DB_vfs_s ** plug_get_vfs_list (void); void plug_volume_set_db (float db); void plug_volume_set_amp (float amp); const char * plug_get_config_dir (void); int plug_activate (DB_plugin_t *plug, int activate); DB_output_t * plug_get_output (void); void plug_reinit_sound (void); int plug_select_output (void); #endif // __PLUGINS_H