summaryrefslogtreecommitdiff
path: root/plugins.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins.c')
-rw-r--r--plugins.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/plugins.c b/plugins.c
index 429b29eb..0fc5ff48 100644
--- a/plugins.c
+++ b/plugins.c
@@ -100,6 +100,8 @@ static DB_functions_t deadbeef_api = {
.thread_start = thread_start,
.thread_start_low_priority = thread_start_low_priority,
.thread_join = thread_join,
+ .thread_detach = thread_detach,
+ .thread_exit = thread_exit,
.mutex_create = mutex_create,
.mutex_create_nonrecursive = mutex_create_nonrecursive,
.mutex_free = mutex_free,
@@ -242,8 +244,10 @@ static DB_functions_t deadbeef_api = {
.conf_get_str = conf_get_str,
.conf_get_float = conf_get_float,
.conf_get_int = conf_get_int,
+ .conf_get_int64 = conf_get_int64,
.conf_set_str = conf_set_str,
.conf_set_int = conf_set_int,
+ .conf_set_int64 = conf_set_int64,
.conf_set_float = conf_set_float,
.conf_find = conf_find,
.conf_remove_items = conf_remove_items,