diff options
author | George Hazan <ghazan@miranda.im> | 2017-08-22 17:19:41 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2017-08-22 17:19:41 +0300 |
commit | 4bba89a17624775e59b19d10da8b6967f74b5371 (patch) | |
tree | 9ebf2e0af82bbf1b48a25f70cd3ad71f46a68eb8 /plugins/Db3x_mmap | |
parent | 92fec1aa22df4c4f1213d33663637c00b753f451 (diff) |
code cleaning
Diffstat (limited to 'plugins/Db3x_mmap')
-rw-r--r-- | plugins/Db3x_mmap/src/database.cpp | 2 | ||||
-rw-r--r-- | plugins/Db3x_mmap/src/dbsettings.cpp | 5 | ||||
-rw-r--r-- | plugins/Db3x_mmap/src/ui.cpp | 2 |
3 files changed, 2 insertions, 7 deletions
diff --git a/plugins/Db3x_mmap/src/database.cpp b/plugins/Db3x_mmap/src/database.cpp index d78dce8e58..d96086a42a 100644 --- a/plugins/Db3x_mmap/src/database.cpp +++ b/plugins/Db3x_mmap/src/database.cpp @@ -23,8 +23,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #include "stdafx.h"
-int InitModuleNames(void);
-int InitMap(void);
int InitIni(void);
void UninitIni(void);
diff --git a/plugins/Db3x_mmap/src/dbsettings.cpp b/plugins/Db3x_mmap/src/dbsettings.cpp index 8f41895915..aacb29f2da 100644 --- a/plugins/Db3x_mmap/src/dbsettings.cpp +++ b/plugins/Db3x_mmap/src/dbsettings.cpp @@ -25,10 +25,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #pragma warning(disable: 4701)
-DWORD GetModuleNameOfs(const char *szName);
-DBCachedContact* AddToCachedContactList(MCONTACT contactID, int index);
-
-#define VLT(n) ((n == DBVT_UTF8 || n == DBVT_ENCRYPTED)?DBVT_ASCIIZ:n)
+#define VLT(n) ((n == DBVT_UTF8 || n == DBVT_ENCRYPTED) ? DBVT_ASCIIZ : n)
BOOL CDb3Mmap::IsSettingEncrypted(LPCSTR szModule, LPCSTR szSetting)
{
diff --git a/plugins/Db3x_mmap/src/ui.cpp b/plugins/Db3x_mmap/src/ui.cpp index 8254a99df4..1eeab530f5 100644 --- a/plugins/Db3x_mmap/src/ui.cpp +++ b/plugins/Db3x_mmap/src/ui.cpp @@ -108,7 +108,7 @@ static INT_PTR CALLBACK sttEnterPassword(HWND hwndDlg, UINT uMsg, WPARAM wParam, CREDENTIAL cred = { 0 };
cred.Type = CRED_TYPE_GENERIC;
cred.TargetName = L"Miranda NG/Dbx_mmap";
- cred.CredentialBlobSize = mir_wstrlen(param->newPass) * sizeof(wchar_t) + sizeof(wchar_t);
+ cred.CredentialBlobSize = DWORD(mir_wstrlen(param->newPass) * sizeof(wchar_t) + sizeof(wchar_t));
cred.CredentialBlob = (LPBYTE)param->newPass;
cred.Persist = CRED_PERSIST_LOCAL_MACHINE;
CredWrite(&cred, 0);
|