diff options
author | MikalaiR <nikolay.romanovich@narod.ru> | 2016-05-07 19:05:24 +0000 |
---|---|---|
committer | MikalaiR <nikolay.romanovich@narod.ru> | 2016-05-07 19:05:24 +0000 |
commit | 90d40f81fda6ae473ef399a2144c0766678dc1cf (patch) | |
tree | 5ea2c133b828c3f2d40fff49b8c905bfa1c41777 /protocols/SkypeWeb/src/main.cpp | |
parent | 0d3b1e2959bdf303c9e60bc9d3940e51e5e3e1d1 (diff) |
SkypeWeb: support custom nicks for chat's users
git-svn-id: http://svn.miranda-ng.org/main/trunk@16814 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/SkypeWeb/src/main.cpp')
-rw-r--r-- | protocols/SkypeWeb/src/main.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/protocols/SkypeWeb/src/main.cpp b/protocols/SkypeWeb/src/main.cpp index cbaf9aa86e..02a3f0cec4 100644 --- a/protocols/SkypeWeb/src/main.cpp +++ b/protocols/SkypeWeb/src/main.cpp @@ -23,6 +23,7 @@ CLIST_INTERFACE *pcli; FI_INTERFACE *fii = NULL;
char g_szMirVer[100];
HANDLE g_hCallEvent;
+CHAT_MANAGER *pci;
PLUGININFOEX pluginInfo =
{
@@ -57,6 +58,7 @@ extern "C" int __declspec(dllexport) Load(void) {
mir_getLP(&pluginInfo);
mir_getCLI();
+ mir_getCI(nullptr);
CallService(MS_IMG_GETINTERFACE, FI_IF_VERSION, (LPARAM)&fii);
CallService(MS_SYSTEM_GETVERSIONTEXT, sizeof(g_szMirVer), LPARAM(g_szMirVer));
|