diff options
Diffstat (limited to 'plugins/Dbx_mmap_SA')
-rw-r--r-- | plugins/Dbx_mmap_SA/db3x_mmap_sa_10.vcxproj | 1 | ||||
-rw-r--r-- | plugins/Dbx_mmap_SA/db3x_mmap_sa_10.vcxproj.filters | 3 | ||||
-rw-r--r-- | plugins/Dbx_mmap_SA/src/dbintf_sa.cpp | 4 | ||||
-rw-r--r-- | plugins/Dbx_mmap_SA/src/dbintf_sa.h | 2 |
4 files changed, 7 insertions, 3 deletions
diff --git a/plugins/Dbx_mmap_SA/db3x_mmap_sa_10.vcxproj b/plugins/Dbx_mmap_SA/db3x_mmap_sa_10.vcxproj index 096c15d901..b31504a3f1 100644 --- a/plugins/Dbx_mmap_SA/db3x_mmap_sa_10.vcxproj +++ b/plugins/Dbx_mmap_SA/db3x_mmap_sa_10.vcxproj @@ -191,6 +191,7 @@ <ClCompile Include="..\Db3x_mmap\src\dbevents.cpp" />
<ClCompile Include="..\Db3x_mmap\src\dbheaders.cpp" />
<ClCompile Include="..\Db3x_mmap\src\dbintf.cpp" />
+ <ClCompile Include="..\Db3x_mmap\src\dbintfm.cpp" />
<ClCompile Include="..\Db3x_mmap\src\dbmodulechain.cpp" />
<ClCompile Include="..\Db3x_mmap\src\dbsettings.cpp" />
<ClCompile Include="src\dbintf_sa.cpp" />
diff --git a/plugins/Dbx_mmap_SA/db3x_mmap_sa_10.vcxproj.filters b/plugins/Dbx_mmap_SA/db3x_mmap_sa_10.vcxproj.filters index f7ebe6ae7e..92622e59c8 100644 --- a/plugins/Dbx_mmap_SA/db3x_mmap_sa_10.vcxproj.filters +++ b/plugins/Dbx_mmap_SA/db3x_mmap_sa_10.vcxproj.filters @@ -57,6 +57,9 @@ <ClCompile Include="..\Db3x_mmap\src\dbevents.cpp">
<Filter>Mmap files</Filter>
</ClCompile>
+ <ClCompile Include="..\Db3x_mmap\src\dbintfm.cpp">
+ <Filter>Mmap files</Filter>
+ </ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="src\commonheaders.h">
diff --git a/plugins/Dbx_mmap_SA/src/dbintf_sa.cpp b/plugins/Dbx_mmap_SA/src/dbintf_sa.cpp index b85b3481cb..05db621e7a 100644 --- a/plugins/Dbx_mmap_SA/src/dbintf_sa.cpp +++ b/plugins/Dbx_mmap_SA/src/dbintf_sa.cpp @@ -34,13 +34,13 @@ int InitDialogs(void); DBSignature dbSignatureSecured = {"Miranda ICQ SD",0x1A};
CDdxMmapSA::CDdxMmapSA(const TCHAR* tszFileName) :
- CDdxMmap(tszFileName)
+ CDb3Mmap(tszFileName)
{
}
int CDdxMmapSA::Load(bool bSkipInit)
{
- if ( CDdxMmap::Load(bSkipInit) != ERROR_SUCCESS)
+ if ( CDb3Mmap::Load(bSkipInit) != ERROR_SUCCESS)
return 1;
if ( CheckDbHeaders())
diff --git a/plugins/Dbx_mmap_SA/src/dbintf_sa.h b/plugins/Dbx_mmap_SA/src/dbintf_sa.h index 8c6c9c04dc..d532855420 100644 --- a/plugins/Dbx_mmap_SA/src/dbintf_sa.h +++ b/plugins/Dbx_mmap_SA/src/dbintf_sa.h @@ -25,7 +25,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #include "..\Db3x_mmap\src\dbintf.h"
-struct CDdxMmapSA : public CDdxMmap
+struct CDdxMmapSA : public CDb3Mmap
{
CDdxMmapSA(const TCHAR* tszFileName);
|