summaryrefslogtreecommitdiff
path: root/src/core/stduserinfo/main.cpp
diff options
context:
space:
mode:
authorKirill Volinsky <mataes2007@gmail.com>2014-12-25 19:18:28 +0000
committerKirill Volinsky <mataes2007@gmail.com>2014-12-25 19:18:28 +0000
commitbed0da01408d35c9a5a311748e9f5266805c8965 (patch)
treee73d57f97eb82d0d1d74d7bc69200bf6acaff49f /src/core/stduserinfo/main.cpp
parentc8352737131e90d27de39622357fd7a7bbb9f3a2 (diff)
files structure changed
git-svn-id: http://svn.miranda-ng.org/main/trunk@11636 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src/core/stduserinfo/main.cpp')
-rw-r--r--src/core/stduserinfo/main.cpp71
1 files changed, 0 insertions, 71 deletions
diff --git a/src/core/stduserinfo/main.cpp b/src/core/stduserinfo/main.cpp
deleted file mode 100644
index b0e4e60776..0000000000
--- a/src/core/stduserinfo/main.cpp
+++ /dev/null
@@ -1,71 +0,0 @@
-/*
-
-Standard User Info plugin for Miranda NG
-
-Copyright (C) 2012-14 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 LoadUserInfoModule(void);
-
-CLIST_INTERFACE* pcli;
-TIME_API tmi;
-HINSTANCE hInst;
-int hLangpack;
-
-PLUGININFOEX pluginInfo = {
- sizeof(PLUGININFOEX),
- __PLUGIN_NAME,
- MIRANDA_VERSION_DWORD,
- __DESCRIPTION,
- __AUTHOR,
- __AUTHOREMAIL,
- __COPYRIGHT,
- __AUTHORWEB,
- UNICODE_AWARE,
- // {8198DC94-0BC4-448A-8495-8FE832C1D333}
- {0x8198dc94, 0xbc4, 0x448a, {0x84, 0x95, 0x8f, 0xe8, 0x32, 0xc1, 0xd3, 0x33 }}
-};
-
-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_UIUSERINFO, MIID_LAST};
-
-extern "C" int __declspec(dllexport) Load(void)
-{
- mir_getLP(&pluginInfo);
- mir_getTMI(&tmi);
- mir_getCLI();
-
- LoadUserInfoModule();
- return 0;
-}
-
-extern "C" int __declspec(dllexport) Unload(void)
-{
- return 0;
-}