diff options
author | Max Kellermann <max@duempel.org> | 2014-01-11 01:01:54 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-01-11 01:01:54 +0100 |
commit | 114df1f137d5a32cdde64d43712fb602c2f93ebb (patch) | |
tree | b0f1b51cfed7ef50b1e98a241dcfd8d8c17a2791 /src/DatabaseGlue.cxx | |
parent | 00adf7ff173afbe7fe13734a27d6ee19096ce640 (diff) | |
download | mpd-114df1f137d5a32cdde64d43712fb602c2f93ebb.tar.gz mpd-114df1f137d5a32cdde64d43712fb602c2f93ebb.tar.xz mpd-114df1f137d5a32cdde64d43712fb602c2f93ebb.zip |
DatabasePlugin: add interface DatabaseListener
Allow database plugins to announce that they have been modified.
Diffstat (limited to 'src/DatabaseGlue.cxx')
-rw-r--r-- | src/DatabaseGlue.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/DatabaseGlue.cxx b/src/DatabaseGlue.cxx index f64b31738..d5aad0522 100644 --- a/src/DatabaseGlue.cxx +++ b/src/DatabaseGlue.cxx @@ -37,7 +37,8 @@ static bool db_is_open; static bool is_simple; bool -DatabaseGlobalInit(const config_param ¶m, Error &error) +DatabaseGlobalInit(EventLoop &loop, DatabaseListener &listener, + const config_param ¶m, Error &error) { assert(db == nullptr); assert(!db_is_open); @@ -53,7 +54,7 @@ DatabaseGlobalInit(const config_param ¶m, Error &error) return false; } - db = plugin->create(param, error); + db = plugin->create(loop, listener, param, error); return db != nullptr; } |