[db] Add functions to read/store int64 values in admin table

This commit is contained in:
chme
2017-11-12 09:27:26 +01:00
parent 37aaf73f6a
commit ea0cc64aa3
2 changed files with 92 additions and 10 deletions

View File

@@ -680,9 +680,15 @@ db_spotify_files_delete(void);
int
db_admin_set(const char *key, const char *value);
int
db_admin_setint64(const char *key, int64_t value);
char *
db_admin_get(const char *key);
int64_t
db_admin_getint64(const char *key);
int
db_admin_delete(const char *key);