From 6e53dfca72b932c4bdcd7aa02ca62bf8b2630eac Mon Sep 17 00:00:00 2001 From: George Hazan Date: Tue, 26 Jul 2016 09:20:25 +0000 Subject: less TCHARs: - TCHAR is replaced with wchar_t everywhere; - LPGENT replaced with either LPGENW or LPGEN; - fixes for ANSI plugins that improperly used _t functions; - TCHAR *t removed from MAllStrings; - ptszGroup, ptszTitle & ptszTab in OPTIONSDIALOGPAGE replaced with pwsz* git-svn-id: http://svn.miranda-ng.org/main/trunk@17133 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/Db3x_mmap/src/init.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'plugins/Db3x_mmap/src/init.cpp') diff --git a/plugins/Db3x_mmap/src/init.cpp b/plugins/Db3x_mmap/src/init.cpp index ad2b9130aa..1480ad214a 100644 --- a/plugins/Db3x_mmap/src/init.cpp +++ b/plugins/Db3x_mmap/src/init.cpp @@ -47,7 +47,7 @@ LIST g_Dbs(1, HandleKeySortT); ///////////////////////////////////////////////////////////////////////////////////////// // returns 0 if the profile is created, EMKPRF* -static int makeDatabase(const TCHAR *profile) +static int makeDatabase(const wchar_t *profile) { std::auto_ptr db(new CDb3Mmap(profile, 0)); if (db->Create() != ERROR_SUCCESS) @@ -57,7 +57,7 @@ static int makeDatabase(const TCHAR *profile) } // returns 0 if the given profile has a valid header -static int grokHeader(const TCHAR *profile) +static int grokHeader(const wchar_t *profile) { std::auto_ptr db(new CDb3Mmap(profile, DBMODE_SHARED | DBMODE_READONLY)); if (db->Load(true) != ERROR_SUCCESS) @@ -67,7 +67,7 @@ static int grokHeader(const TCHAR *profile) } // returns 0 if all the APIs are injected otherwise, 1 -static MIDatabase* LoadDatabase(const TCHAR *profile, BOOL bReadOnly) +static MIDatabase* LoadDatabase(const wchar_t *profile, BOOL bReadOnly) { // set the memory, lists & UTF8 manager mir_getLP(&pluginInfo); @@ -87,7 +87,7 @@ static int UnloadDatabase(MIDatabase *db) return 0; } -MIDatabaseChecker* CheckDb(const TCHAR *profile, int *error) +MIDatabaseChecker* CheckDb(const wchar_t *profile, int *error) { std::auto_ptr db(new CDb3Mmap(profile, DBMODE_READONLY)); if (db->Load(true) != ERROR_SUCCESS) { -- cgit v1.2.3