diff options
Diffstat (limited to 'src/DatabaseGlue.hxx')
-rw-r--r-- | src/DatabaseGlue.hxx | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/DatabaseGlue.hxx b/src/DatabaseGlue.hxx index 725aa302a..bf4699ff6 100644 --- a/src/DatabaseGlue.hxx +++ b/src/DatabaseGlue.hxx @@ -23,6 +23,8 @@ #include "Compiler.h" struct config_param; +class EventLoop; +class DatabaseListener; class Database; class Error; @@ -32,7 +34,8 @@ class Error; * @param param the database configuration block */ bool -DatabaseGlobalInit(const config_param ¶m, Error &error); +DatabaseGlobalInit(EventLoop &loop, DatabaseListener &listener, + const config_param ¶m, Error &error); void DatabaseGlobalDeinit(void); |