diff options
author | Max Kellermann <max@duempel.org> | 2013-01-03 00:24:45 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-01-03 01:04:18 +0100 |
commit | d3293b889d20433adede6a248582ce778e1c87b8 (patch) | |
tree | 005c50fe1c81aae34aea2cd320e1f12e09a3c3aa /src/DatabaseGlue.hxx | |
parent | b4b0b34e5a131f02f723f40cf9566cc43e37cf85 (diff) | |
download | mpd-d3293b889d20433adede6a248582ce778e1c87b8.tar.gz mpd-d3293b889d20433adede6a248582ce778e1c87b8.tar.xz mpd-d3293b889d20433adede6a248582ce778e1c87b8.zip |
database.h: move prototypes to DatabaseGlue.hxx
Diffstat (limited to '')
-rw-r--r-- | src/DatabaseGlue.hxx | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/DatabaseGlue.hxx b/src/DatabaseGlue.hxx index b38ba595a..ea26f3242 100644 --- a/src/DatabaseGlue.hxx +++ b/src/DatabaseGlue.hxx @@ -23,9 +23,24 @@ #include "gcc.h" #include "gerror.h" +struct config_param; class Database; /** + * Initialize the database library. + * + * @param param the database configuration block + */ +bool +DatabaseGlobalInit(const config_param *param, GError **error_r); + +void +DatabaseGlobalDeinit(void); + +bool +DatabaseGlobalOpen(GError **error); + +/** * Returns the global #Database instance. May return NULL if this MPD * configuration has no database (no music_directory was configured). */ |