diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2014-12-25 18:25:32 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2014-12-25 18:25:32 +0000 |
commit | 850bcd307e82aafd5c8fdc7e46f7c42588c25cfa (patch) | |
tree | 66bebbd28786c06dab25a2873e9c1090b343353d /src/core/stdcrypt/main.cpp | |
parent | 34306c48a9fb217405e4f36496ca3e910cdfdb3b (diff) |
files structure changed
git-svn-id: http://svn.miranda-ng.org/main/trunk@11630 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src/core/stdcrypt/main.cpp')
-rw-r--r-- | src/core/stdcrypt/main.cpp | 65 |
1 files changed, 0 insertions, 65 deletions
diff --git a/src/core/stdcrypt/main.cpp b/src/core/stdcrypt/main.cpp deleted file mode 100644 index 5c2d8b3084..0000000000 --- a/src/core/stdcrypt/main.cpp +++ /dev/null @@ -1,65 +0,0 @@ -/*
-
-Standard encryption plugin for Myranda NG
-Copyright (C) 2012-13 George Hazan
-
-This program is free software; you can redistribute it and/or modify
-it under the terms of the GNU General Public License as published by
-the Free Software Foundation; either version 2 of the License, or
-(at your option) any later version.
-
-This program is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License along
-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"
-
-int LoadEncryptionModule(void);
-
-HINSTANCE hInst;
-int hLangpack;
-
-PLUGININFOEX pluginInfo = {
- sizeof(PLUGININFOEX),
- __PLUGIN_NAME,
- MIRANDA_VERSION_DWORD,
- __DESCRIPTION,
- __AUTHOR,
- __AUTHOREMAIL,
- __COPYRIGHT,
- __AUTHORWEB,
- UNICODE_AWARE,
- // {D3637189-A5A5-41F5-BC72-67A2F8AF1B6F}
- { 0xd3637189, 0xa5a5, 0x41f5, {0xbc, 0x72, 0x67, 0xa2, 0xf8, 0xaf, 0x1b, 0x6f}}
-};
-
-BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
-{
- hInst = hinstDLL;
- return TRUE;
-}
-
-extern "C" __declspec(dllexport) PLUGININFOEX* MirandaPluginInfoEx(DWORD mirandaVersion)
-{
- return &pluginInfo;
-}
-
-extern "C" __declspec(dllexport) const MUUID MirandaInterfaces[] = { MIID_CRYPTO, MIID_LAST };
-
-extern "C" int __declspec(dllexport) Load(void)
-{
- mir_getLP(&pluginInfo);
-
- return LoadEncryptionModule();
-}
-
-extern "C" int __declspec(dllexport) Unload(void)
-{
- return 0;
-}
|