From 690f5e6d29d1c85c4be72638eb22843964c2f512 Mon Sep 17 00:00:00 2001 From: Alexander Lantsev Date: Fri, 24 Apr 2015 08:21:28 +0000 Subject: All non-working stuff moved from trunk git-svn-id: http://svn.miranda-ng.org/main/trunk@13071 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/!Deprecated/VersionInfo/src/main.cpp | 105 --------------------------- 1 file changed, 105 deletions(-) delete mode 100644 plugins/!Deprecated/VersionInfo/src/main.cpp (limited to 'plugins/!Deprecated/VersionInfo/src/main.cpp') diff --git a/plugins/!Deprecated/VersionInfo/src/main.cpp b/plugins/!Deprecated/VersionInfo/src/main.cpp deleted file mode 100644 index caf9cbffe7..0000000000 --- a/plugins/!Deprecated/VersionInfo/src/main.cpp +++ /dev/null @@ -1,105 +0,0 @@ -/* -Version information plugin for Miranda IM - -Copyright © 2002-2006 Luca Santarelli, Cristian Libotean - -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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -*/ - -#include "common.h" - -HINSTANCE hInst; - -int hLangpack; - -HICON hiVIIcon; - -DWORD EnglishLocale; - -HANDLE hOutputLocation = NULL; //for folders plugin - -void * (* MirandaMalloc)(size_t); -void * (* MirandaRealloc)(void *, size_t); -void (* MirandaFree)(void *); - -char ModuleName[] = "VersionInfo"; - -#ifdef _DEBUG - BOOL verbose = FALSE;//TRUE; -#else - BOOL verbose = FALSE; -#endif - -PLUGININFOEX pluginInfo={ - sizeof(PLUGININFOEX), - __PLUGIN_NAME, - PLUGIN_MAKE_VERSION(__MAJOR_VERSION, __MINOR_VERSION, __RELEASE_NUM, __BUILD_NUM), - __DESCRIPTION, - __AUTHOR, - __AUTHOREMAIL, - __COPYRIGHT, - __AUTHORWEB, - UNICODE_AWARE, - // {2F174488-489C-4FE1-940D-596CF0F35E65} - {0x2f174488, 0x489c, 0x4fe1, {0x94, 0x0d, 0x59, 0x6c, 0xf0, 0xf3, 0x5e, 0x65}} -}; - -extern "C" __declspec(dllexport) const MUUID MirandaInterfaces[] = {MIID_SERVICEMODE, MIID_LAST}; - -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" int __declspec(dllexport) Load(void) -{ - mir_getLP(&pluginInfo); - - InitServices(); - HookEvents(); - - hiVIIcon = LoadIcon(hInst, MAKEINTRESOURCE(IDI_MAIN)); - - //get the name of the dll itself - TCHAR filePath[512] = {0}; - GetModuleFileName(hInst, filePath, SIZEOF(filePath)); - TCHAR *fileName = NULL; - size_t i = _tcslen(filePath) - 1; - _tcslwr(filePath); - - //Menu item - CLISTMENUITEM mi = { sizeof(mi) }; - mi.position = mi.popupPosition = 2000089999; - mi.hIcon = hiVIIcon; - mi.pszName = LPGEN("Version Information"); - mi.pszService = MS_VERSIONINFO_MENU_COMMAND; - Menu_AddMainMenuItem(&mi); - - if (LoadLibraryA("RichEd32.dll") == NULL) - MessageBoxA(NULL, "d'oh", "d'oh", MB_OK); - - return 0; -} - -extern "C" int __declspec(dllexport) Unload(void) -{ - return 0; -} \ No newline at end of file -- cgit v1.2.3