summaryrefslogtreecommitdiff
path: root/deadbeef.h
diff options
context:
space:
mode:
authorGravatar waker <wakeroid@gmail.com>2009-08-28 20:30:20 +0200
committerGravatar waker <wakeroid@gmail.com>2009-08-28 20:30:20 +0200
commitf263abb8b777b61bcce7eee88716a137d0f880c3 (patch)
tree4e1b2c27affb8e9f3c27726b04b0fe9909cc919a /deadbeef.h
parent81d1b50a3bd28099b784e5b2a14295e715a48d01 (diff)
lastfm multithreading WIP
Diffstat (limited to 'deadbeef.h')
-rw-r--r--deadbeef.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/deadbeef.h b/deadbeef.h
index 2dfefda9..cd3583be 100644
--- a/deadbeef.h
+++ b/deadbeef.h
@@ -128,6 +128,11 @@ typedef struct {
void (*mutex_free) (uintptr_t mtx);
int (*mutex_lock) (uintptr_t mtx);
int (*mutex_unlock) (uintptr_t mtx);
+ uintptr_t (*cond_create) (void);
+ void (*cond_free) (uintptr_t cond);
+ int (*cond_wait) (uintptr_t cond, uintptr_t mutex);
+ int (*cond_signal) (uintptr_t cond);
+ int (*cond_broadcast) (uintptr_t cond);
// playlist access
const char *(*pl_find_meta) (DB_playItem_t *song, const char *meta);
// volume control