diff options
author | Sergey Bolhovskoy <elzorfox@ya.ru> | 2016-03-21 07:22:23 +0000 |
---|---|---|
committer | Sergey Bolhovskoy <elzorfox@ya.ru> | 2016-03-21 07:22:23 +0000 |
commit | 2e2455779068f117e25bbb600d22f9f84aeb90a0 (patch) | |
tree | 456152f5ad4bf8b8d515db98164591ef430eb480 /protocols/VKontakte/src/main.cpp | |
parent | 3290e01656f52149b1c0c871a84357ec53510e26 (diff) |
VKontakte:
captcha sent to browser as data:image/png;base64 (patсh by MikalaiR, edited)
add 'UseCaptchaAssistant' hidden option (BYTE)
git-svn-id: http://svn.miranda-ng.org/main/trunk@16520 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/VKontakte/src/main.cpp')
-rw-r--r-- | protocols/VKontakte/src/main.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/protocols/VKontakte/src/main.cpp b/protocols/VKontakte/src/main.cpp index 4279c2c3cf..058c65b8e4 100644 --- a/protocols/VKontakte/src/main.cpp +++ b/protocols/VKontakte/src/main.cpp @@ -21,6 +21,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. HINSTANCE hInst;
int hLangpack;
CLIST_INTERFACE *pcli;
+FI_INTERFACE *fii;
PLUGININFOEX pluginInfo =
{
@@ -71,6 +72,7 @@ extern "C" int __declspec(dllexport) Load() {
mir_getLP(&pluginInfo);
mir_getCLI();
+ CallService(MS_IMG_GETINTERFACE, FI_IF_VERSION, (LPARAM)&fii);
InitIcons();
// Register protocol module
|