diff options
author | George Hazan <ghazan@miranda.im> | 2018-03-25 21:10:33 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-03-25 21:10:40 +0300 |
commit | 3583f79d974d805aa67ba8b1feb49a4974c2e4cd (patch) | |
tree | 4eea2be29bde54b8ca301eb12b617e08be39fad6 /plugins/Db3x_mmap/src/dbintf.cpp | |
parent | f0c08538d0cdddb62453761e437cd7d2a3325bd0 (diff) |
dbchecker moved to deprecated
Diffstat (limited to 'plugins/Db3x_mmap/src/dbintf.cpp')
-rw-r--r-- | plugins/Db3x_mmap/src/dbintf.cpp | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/plugins/Db3x_mmap/src/dbintf.cpp b/plugins/Db3x_mmap/src/dbintf.cpp index be36e4bdd7..faf15ebd62 100644 --- a/plugins/Db3x_mmap/src/dbintf.cpp +++ b/plugins/Db3x_mmap/src/dbintf.cpp @@ -157,27 +157,6 @@ int CDb3Mmap::Create() return (m_hDbFile == INVALID_HANDLE_VALUE);
}
-int CDb3Mmap::PrepareCheck(int *error)
-{
- int ret = CheckDbHeaders(true);
- switch (ret) {
- case ERROR_SUCCESS:
- case EGROKPRF_OBSOLETE:
- *error = ret;
- break;
-
- default:
- return ret;
- }
-
- InitMap();
- InitModuleNames();
- if ((ret = InitCrypt()) != ERROR_SUCCESS)
- return ret;
-
- return ERROR_SUCCESS;
-}
-
STDMETHODIMP_(void) CDb3Mmap::SetCacheSafetyMode(BOOL bIsSet)
{
{ mir_cslock lck(m_csDbAccess);
|