summaryrefslogtreecommitdiff
path: root/plugins/CmdLine/src/utils.h
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2018-02-16 22:07:43 +0200
committerGeorge Hazan <ghazan@miranda.im>2018-02-16 22:08:26 +0200
commit8d127430d057891fbd3ac5989d32090715d7923a (patch)
tree2c02b3401ca7a583302730161c3e11ec9607c1f4 /plugins/CmdLine/src/utils.h
parent9cde0c92420f4811a646964c1304f7c55f8a50a5 (diff)
fixes #1143 (CmdLine Plugin error when using Diacritics in message)
Diffstat (limited to 'plugins/CmdLine/src/utils.h')
-rw-r--r--plugins/CmdLine/src/utils.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/plugins/CmdLine/src/utils.h b/plugins/CmdLine/src/utils.h
index 3fe9f4ca61..617f329391 100644
--- a/plugins/CmdLine/src/utils.h
+++ b/plugins/CmdLine/src/utils.h
@@ -43,11 +43,9 @@ int GetStringFromDatabase(MCONTACT hContact, char *szModule, char *szSettingName
int GetStringFromDatabase(char *szSettingName, char *szError, char *szResult, size_t size);
int GetStringFromDatabase(char *szSettingName, WCHAR *szError, WCHAR *szResult, size_t count);
-char* GetContactName(MCONTACT hContact, char *szProto);
-char* GetContactID(MCONTACT hContact);
-char* GetContactID(MCONTACT hContact, char *szProto);
-MCONTACT GetContactFromID(char *szID, char *szProto);
-MCONTACT GetContactFromID(char *szID, wchar_t *szProto);
+wchar_t* GetContactName(MCONTACT hContact, char *szProto);
+wchar_t* GetContactID(MCONTACT hContact, char *szProto);
+MCONTACT GetContactFromID(wchar_t *szID, char *szProto);
void GetContactProto(MCONTACT hContact, char *szProto, size_t size);
int MyPUShowMessage(char *lpzText, BYTE kind);