diff options
author | George Hazan <george.hazan@gmail.com> | 2016-09-16 17:34:21 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2016-09-16 17:34:21 +0000 |
commit | cac58b5ab572889667f6e936a14f53ac6d87273a (patch) | |
tree | 4007fc8e9f76fb9f0b8b3013c91943f458ded092 /src/mir_app | |
parent | c7c0e011ddcfed4f9c3b49637bfeb8fa0d3d5a9d (diff) |
forgotten database function
git-svn-id: http://svn.miranda-ng.org/main/trunk@17303 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src/mir_app')
-rw-r--r-- | src/mir_app/src/db_intf.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/mir_app/src/db_intf.cpp b/src/mir_app/src/db_intf.cpp index eaab4d9e9b..504bc5bb34 100644 --- a/src/mir_app/src/db_intf.cpp +++ b/src/mir_app/src/db_intf.cpp @@ -50,11 +50,6 @@ static INT_PTR srvFindPlugin(WPARAM, LPARAM lParam) return NULL;
}
-static INT_PTR srvGetCurrentDb(WPARAM, LPARAM)
-{
- return (INT_PTR)currDb;
-}
-
static INT_PTR srvInitInstance(WPARAM, LPARAM lParam)
{
MIDatabase *pDb = (MIDatabase*)lParam;
@@ -80,7 +75,6 @@ int LoadDbintfModule() {
CreateServiceFunction(MS_DB_REGISTER_PLUGIN, srvRegisterPlugin);
CreateServiceFunction(MS_DB_FIND_PLUGIN, srvFindPlugin);
- CreateServiceFunction(MS_DB_GET_CURRENT, srvGetCurrentDb);
CreateServiceFunction(MS_DB_INIT_INSTANCE, srvInitInstance);
CreateServiceFunction(MS_DB_DESTROY_INSTANCE, srvDestroyInstance);
|