diff options
author | George Hazan <george.hazan@gmail.com> | 2013-11-21 13:25:26 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-11-21 13:25:26 +0000 |
commit | b3003cc96456a60832e0a90b7ed6b847ea8b833b (patch) | |
tree | c0d06d2a1f1ff917cb78d77894eadf3df5041228 /plugins/Db3x_mmap/src/dbintf.h | |
parent | 771a25d5bb880bb235a1ba188dc0fd8782a4a2f6 (diff) |
more correct form of dividing mmap & mmap_sa
git-svn-id: http://svn.miranda-ng.org/main/trunk@6953 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Db3x_mmap/src/dbintf.h')
-rw-r--r-- | plugins/Db3x_mmap/src/dbintf.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/plugins/Db3x_mmap/src/dbintf.h b/plugins/Db3x_mmap/src/dbintf.h index 80f1d32790..de26d64923 100644 --- a/plugins/Db3x_mmap/src/dbintf.h +++ b/plugins/Db3x_mmap/src/dbintf.h @@ -301,6 +301,8 @@ struct CDb3Mmap : public CDb3Base CDb3Mmap(const TCHAR* ptszFileName);
~CDb3Mmap();
+ int Load(bool bSkipInit);
+
protected:
virtual DWORD GetSettingsGroupOfsByModuleNameOfs(DBContact *dbc,DWORD ofsContact,DWORD ofsModuleName);
virtual void DBMoveChunk(DWORD ofsDest, DWORD ofsSource, int bytes);
@@ -311,7 +313,7 @@ protected: virtual int InitCache(void);
protected:
- PBYTE m_pNull;
+ PBYTE m_pNull;
void Map();
void ReMap(DWORD needed);
|