summaryrefslogtreecommitdiff
path: root/deadbeef.h
diff options
context:
space:
mode:
Diffstat (limited to 'deadbeef.h')
-rw-r--r--deadbeef.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/deadbeef.h b/deadbeef.h
index 556ef1b6..76ff1551 100644
--- a/deadbeef.h
+++ b/deadbeef.h
@@ -498,8 +498,10 @@ typedef struct {
const char * (*conf_get_str) (const char *key, const char *def);
float (*conf_get_float) (const char *key, float def);
int (*conf_get_int) (const char *key, int def);
+ int64_t (*conf_get_int64) (const char *key, int64_t def);
void (*conf_set_str) (const char *key, const char *val);
void (*conf_set_int) (const char *key, int val);
+ void (*conf_set_int64) (const char *key, int64_t val);
void (*conf_set_float) (const char *key, float val);
DB_conf_item_t * (*conf_find) (const char *group, DB_conf_item_t *prev);
void (*conf_remove_items) (const char *key);