summaryrefslogtreecommitdiff
path: root/plugins.c
diff options
context:
space:
mode:
authorGravatar waker <wakeroid@gmail.com>2012-11-25 12:22:57 +0100
committerGravatar waker <wakeroid@gmail.com>2012-11-25 12:22:57 +0100
commite1e8da8bfe85e42b4e0c893170acd7ecbe3af512 (patch)
treea153f644c8db59f2343d9e1a39b49f06792e2f26 /plugins.c
parent4d190480e4dbb382673e5a2f698fe39c9feb9b80 (diff)
added new set_mute/is_mute API; added hotkey for this
Diffstat (limited to 'plugins.c')
-rw-r--r--plugins.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/plugins.c b/plugins.c
index 3bee6b27..a12b026c 100644
--- a/plugins.c
+++ b/plugins.c
@@ -340,8 +340,10 @@ static DB_functions_t deadbeef_api = {
.pl_get_meta_raw = (int (*) (DB_playItem_t *it, const char *key, char *val, int size))pl_get_meta_raw,
.plt_get_meta = (int (*) (ddb_playlist_t *handle, const char *key, char *val, int size))plt_get_meta,
.pl_meta_exists = (int (*) (DB_playItem_t *it, const char *key))pl_meta_exists,
- // FIXME ******* devel branch only *******
+ // ******* new 1.5 APIs ********
.audio_get_waveform_data = audio_get_waveform_data,
+ .audio_set_mute = audio_set_mute,
+ .audio_is_mute = audio_is_mute,
};
DB_functions_t *deadbeef = &deadbeef_api;