summaryrefslogtreecommitdiff
path: root/include/m_ssl.h
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2015-08-11 09:54:09 +0000
committerGeorge Hazan <george.hazan@gmail.com>2015-08-11 09:54:09 +0000
commit43fc7b251649ff90ff72994c097f8b1f7b8f0b48 (patch)
treebc9deebf390be6cd004faa698cf0cc217d4937ca /include/m_ssl.h
parent535b7c921c5fc4d3f6cc6bff4ad321805e0ab070 (diff)
fix for strange SSL API structure name
git-svn-id: http://svn.miranda-ng.org/main/trunk@14905 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'include/m_ssl.h')
-rw-r--r--include/m_ssl.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/include/m_ssl.h b/include/m_ssl.h
index eb177b4ef2..744274621b 100644
--- a/include/m_ssl.h
+++ b/include/m_ssl.h
@@ -50,9 +50,6 @@ struct SSL_API
pfnSfree sfree;
};
-/* every protocol should declare this variable to use the SSL API */
-extern SSL_API si;
-
/*
a service to obtain the SSL API
@@ -64,7 +61,7 @@ returns TRUE if all is Ok, and FALSE otherwise
#define MS_SYSTEM_GET_SI "Miranda/System/GetSslApi"
-__forceinline INT_PTR mir_getSI(SSL_API* dest)
+__forceinline INT_PTR mir_getSI(SSL_API *dest)
{
dest->cbSize = sizeof(*dest);
return CallService(MS_SYSTEM_GET_SI, 0, (LPARAM)dest);