diff options
Diffstat (limited to 'protocols/SkypeWeb/src/main.cpp')
-rw-r--r-- | protocols/SkypeWeb/src/main.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/protocols/SkypeWeb/src/main.cpp b/protocols/SkypeWeb/src/main.cpp index 99f2f760cc..f82fb49fc3 100644 --- a/protocols/SkypeWeb/src/main.cpp +++ b/protocols/SkypeWeb/src/main.cpp @@ -22,6 +22,7 @@ XML_API xi; TIME_API tmi = { 0 };
HINSTANCE g_hInstance;
CLIST_INTERFACE *pcli;
+char g_szMirVer[100];
PLUGININFOEX pluginInfo =
{
@@ -59,6 +60,8 @@ extern "C" int __declspec(dllexport) Load(void) mir_getXI(&xi);
mir_getCLI();
+ CallService(MS_SYSTEM_GETVERSIONTEXT, sizeof(g_szMirVer), LPARAM(g_szMirVer));
+
PROTOCOLDESCRIPTOR pd = { sizeof(pd) };
pd.szName = "SKYPE";
pd.type = PROTOTYPE_PROTOCOL;
|