mirror of
https://github.com/owntone/owntone-server.git
synced 2025-11-25 03:56:21 -05:00
[db] Add functions to read/store int64 values in admin table
This commit is contained in:
6
src/db.h
6
src/db.h
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user