diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2015-07-26 10:53:09 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2015-07-26 10:53:09 +0000 |
commit | b405eede7f078cf67e6b345c06bd074eceec9b75 (patch) | |
tree | 38d200ff5e06e00201fd9b38ac6f09ccded10950 /plugins/OpenSSL/src/main.cpp | |
parent | 9afe3b2e83e846d56c8b9c808681d0f06bbc1c40 (diff) |
OpenSSL: common project
git-svn-id: http://svn.miranda-ng.org/main/trunk@14715 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/OpenSSL/src/main.cpp')
-rw-r--r-- | plugins/OpenSSL/src/main.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/OpenSSL/src/main.cpp b/plugins/OpenSSL/src/main.cpp index 38bb50b884..f4e4486cf9 100644 --- a/plugins/OpenSSL/src/main.cpp +++ b/plugins/OpenSSL/src/main.cpp @@ -18,7 +18,7 @@ with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ -#include "commonheaders.h" +#include "stdafx.h" int LoadSslModule(void); void UnloadSslModule(void); @@ -40,13 +40,13 @@ PLUGININFOEX pluginInfo = { { 0xb649702c, 0x13de, 0x408a, { 0xb6, 0xc2, 0xfb, 0x8f, 0xed, 0x2a, 0x2c, 0x90 } } }; -BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved) +BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD, LPVOID) { hInst = hinstDLL; return TRUE; } -extern "C" __declspec(dllexport) PLUGININFOEX* MirandaPluginInfoEx(DWORD mirandaVersion) +extern "C" __declspec(dllexport) PLUGININFOEX* MirandaPluginInfoEx(DWORD) { return &pluginInfo; } |