From e320322cbd54511940679b315ec68c37164975fc Mon Sep 17 00:00:00 2001 From: Kirill Volinsky Date: Sat, 27 Dec 2014 09:46:16 +0000 Subject: files structure changed git-svn-id: http://svn.miranda-ng.org/main/trunk@11653 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/testplugin/src/testplug.cpp | 76 ++++++++++++++++++++++++++ plugins/testplugin/testplug.cpp | 76 -------------------------- plugins/testplugin/testplug_10.vcxproj | 42 +------------- plugins/testplugin/testplug_10.vcxproj.filters | 2 +- plugins/testplugin/testplug_12.vcxproj | 42 +------------- plugins/testplugin/testplug_12.vcxproj.filters | 2 +- 6 files changed, 80 insertions(+), 160 deletions(-) create mode 100644 plugins/testplugin/src/testplug.cpp delete mode 100644 plugins/testplugin/testplug.cpp diff --git a/plugins/testplugin/src/testplug.cpp b/plugins/testplugin/src/testplug.cpp new file mode 100644 index 0000000000..2c98789edc --- /dev/null +++ b/plugins/testplugin/src/testplug.cpp @@ -0,0 +1,76 @@ +/* +Miranda NG plugin template +http://miranda-ng.org/ + +This file is placed in the public domain. Anybody is free to use or +modify it as they wish with no restriction. +There is no warranty. +*/ + +#include +#include + +#include +#include +#include +#include + +HINSTANCE hInst = NULL; +int hLangpack; + +PLUGININFOEX pluginInfo = { + sizeof(PLUGININFOEX), + "Plugin Template", + PLUGIN_MAKE_VERSION(0,0,0,2), + "The long description of your plugin, to go in the plugin options dialog", + "J. Random Hacker", + "noreply@sourceforge.net", + "© 2002 J. Random Hacker", + "http://miranda-ng.org/", + UNICODE_AWARE, //not transient + // Generate your own unique id for your plugin. + // Do not use this UUID! + // Use uuidgen.exe to generate the uuuid + {0x8b86253, 0xec6e, 0x4d09, { 0xb7, 0xa9, 0x64, 0xac, 0xdf, 0x6, 0x27, 0xb8 }} //{08B86253-EC6E-4d09-B7A9-64ACDF0627B8} +}; + +BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved) +{ + hInst = hinstDLL; + return TRUE; +} + +INT_PTR PluginMenuCommand(WPARAM wParam, LPARAM lParam) +{ + MessageBox(NULL, TranslateT("Just groovy, baby!"), TranslateT("Plugin-o-rama"), MB_OK); + return 0; +} + +extern "C" __declspec(dllexport) PLUGININFOEX* MirandaPluginInfoEx(DWORD mirandaVersion) +{ + return &pluginInfo; +} + +extern "C" __declspec(dllexport) const MUUID interfaces[] = {MIID_TESTPLUGIN, MIID_LAST}; + +extern "C" __declspec(dllexport) int Load() +{ + mir_getLP(&pluginInfo); + + CLISTMENUITEM mi = {0}; + + CreateServiceFunction("TestPlug/MenuCommand", PluginMenuCommand); + mi.cbSize = sizeof(mi); + mi.position = -0x7FFFFFFF; + mi.flags = CMIF_TCHAR; + mi.hIcon = LoadSkinnedIcon(SKINICON_OTHER_MIRANDA); + mi.ptszName = LPGENT("&Test Plugin..."); + mi.pszService = "TestPlug/MenuCommand"; + Menu_AddMainMenuItem(&mi); + return 0; +} + +extern "C" __declspec(dllexport) int Unload(void) +{ + return 0; +} diff --git a/plugins/testplugin/testplug.cpp b/plugins/testplugin/testplug.cpp deleted file mode 100644 index 2c98789edc..0000000000 --- a/plugins/testplugin/testplug.cpp +++ /dev/null @@ -1,76 +0,0 @@ -/* -Miranda NG plugin template -http://miranda-ng.org/ - -This file is placed in the public domain. Anybody is free to use or -modify it as they wish with no restriction. -There is no warranty. -*/ - -#include -#include - -#include -#include -#include -#include - -HINSTANCE hInst = NULL; -int hLangpack; - -PLUGININFOEX pluginInfo = { - sizeof(PLUGININFOEX), - "Plugin Template", - PLUGIN_MAKE_VERSION(0,0,0,2), - "The long description of your plugin, to go in the plugin options dialog", - "J. Random Hacker", - "noreply@sourceforge.net", - "© 2002 J. Random Hacker", - "http://miranda-ng.org/", - UNICODE_AWARE, //not transient - // Generate your own unique id for your plugin. - // Do not use this UUID! - // Use uuidgen.exe to generate the uuuid - {0x8b86253, 0xec6e, 0x4d09, { 0xb7, 0xa9, 0x64, 0xac, 0xdf, 0x6, 0x27, 0xb8 }} //{08B86253-EC6E-4d09-B7A9-64ACDF0627B8} -}; - -BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved) -{ - hInst = hinstDLL; - return TRUE; -} - -INT_PTR PluginMenuCommand(WPARAM wParam, LPARAM lParam) -{ - MessageBox(NULL, TranslateT("Just groovy, baby!"), TranslateT("Plugin-o-rama"), MB_OK); - return 0; -} - -extern "C" __declspec(dllexport) PLUGININFOEX* MirandaPluginInfoEx(DWORD mirandaVersion) -{ - return &pluginInfo; -} - -extern "C" __declspec(dllexport) const MUUID interfaces[] = {MIID_TESTPLUGIN, MIID_LAST}; - -extern "C" __declspec(dllexport) int Load() -{ - mir_getLP(&pluginInfo); - - CLISTMENUITEM mi = {0}; - - CreateServiceFunction("TestPlug/MenuCommand", PluginMenuCommand); - mi.cbSize = sizeof(mi); - mi.position = -0x7FFFFFFF; - mi.flags = CMIF_TCHAR; - mi.hIcon = LoadSkinnedIcon(SKINICON_OTHER_MIRANDA); - mi.ptszName = LPGENT("&Test Plugin..."); - mi.pszService = "TestPlug/MenuCommand"; - Menu_AddMainMenuItem(&mi); - return 0; -} - -extern "C" __declspec(dllexport) int Unload(void) -{ - return 0; -} diff --git a/plugins/testplugin/testplug_10.vcxproj b/plugins/testplugin/testplug_10.vcxproj index 1b9538ab75..0e01726319 100644 --- a/plugins/testplugin/testplug_10.vcxproj +++ b/plugins/testplugin/testplug_10.vcxproj @@ -19,11 +19,9 @@ - + - - testplug @@ -50,19 +48,15 @@ - - - - @@ -95,18 +89,9 @@ ..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - - true - NDEBUG;%(PreprocessorDefinitions) - .\Release\testplug.tlb - true - Win32 - - 0x0809 NDEBUG;%(PreprocessorDefinitions) - true Windows @@ -128,17 +113,9 @@ ..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - - true - NDEBUG;%(PreprocessorDefinitions) - .\Release\testplug.tlb - true - - 0x0809 NDEBUG;%(PreprocessorDefinitions) - true Windows @@ -162,18 +139,9 @@ _DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) EnableFastChecks - - true - _DEBUG;%(PreprocessorDefinitions) - .\Debug\testplug.tlb - true - Win32 - - 0x0809 _DEBUG;%(PreprocessorDefinitions) - true true @@ -193,17 +161,9 @@ _DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) EnableFastChecks - - true - _DEBUG;%(PreprocessorDefinitions) - .\Debug\testplug.tlb - true - - 0x0809 _DEBUG;%(PreprocessorDefinitions) - true true diff --git a/plugins/testplugin/testplug_10.vcxproj.filters b/plugins/testplugin/testplug_10.vcxproj.filters index 6f57ac5bd9..990797c069 100644 --- a/plugins/testplugin/testplug_10.vcxproj.filters +++ b/plugins/testplugin/testplug_10.vcxproj.filters @@ -15,7 +15,7 @@ - + Source Files diff --git a/plugins/testplugin/testplug_12.vcxproj b/plugins/testplugin/testplug_12.vcxproj index 055bca2c06..c8706ac25b 100644 --- a/plugins/testplugin/testplug_12.vcxproj +++ b/plugins/testplugin/testplug_12.vcxproj @@ -19,11 +19,9 @@ - + - - testplug @@ -50,19 +48,15 @@ - - - - @@ -95,18 +89,9 @@ ..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - - true - NDEBUG;%(PreprocessorDefinitions) - .\Release\testplug.tlb - true - Win32 - - 0x0809 NDEBUG;%(PreprocessorDefinitions) - true Windows @@ -128,17 +113,9 @@ ..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - - true - NDEBUG;%(PreprocessorDefinitions) - .\Release\testplug.tlb - true - - 0x0809 NDEBUG;%(PreprocessorDefinitions) - true Windows @@ -162,18 +139,9 @@ _DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) EnableFastChecks - - true - _DEBUG;%(PreprocessorDefinitions) - .\Debug\testplug.tlb - true - Win32 - - 0x0809 _DEBUG;%(PreprocessorDefinitions) - true true @@ -193,17 +161,9 @@ _DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) EnableFastChecks - - true - _DEBUG;%(PreprocessorDefinitions) - .\Debug\testplug.tlb - true - - 0x0809 _DEBUG;%(PreprocessorDefinitions) - true true diff --git a/plugins/testplugin/testplug_12.vcxproj.filters b/plugins/testplugin/testplug_12.vcxproj.filters index 6f57ac5bd9..990797c069 100644 --- a/plugins/testplugin/testplug_12.vcxproj.filters +++ b/plugins/testplugin/testplug_12.vcxproj.filters @@ -15,7 +15,7 @@ - + Source Files -- cgit v1.2.3