From 142074f63bdf6602d52a92fef351dcd325630412 Mon Sep 17 00:00:00 2001 From: Kirill Volinsky Date: Sun, 14 Oct 2012 14:34:56 +0000 Subject: updated testplugin git-svn-id: http://svn.miranda-ng.org/main/trunk@1928 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/testplugin/testplug.c | 71 --------- plugins/testplugin/testplug.cpp | 76 ++++++++++ plugins/testplugin/testplug.dsp | 107 -------------- plugins/testplugin/testplug.dsw | 29 ---- plugins/testplugin/testplug.vcxproj | 218 ++++++++++++++++++++++++++++ plugins/testplugin/testplug.vcxproj.filters | 22 +++ 6 files changed, 316 insertions(+), 207 deletions(-) delete mode 100644 plugins/testplugin/testplug.c create mode 100644 plugins/testplugin/testplug.cpp delete mode 100644 plugins/testplugin/testplug.dsp delete mode 100644 plugins/testplugin/testplug.dsw create mode 100644 plugins/testplugin/testplug.vcxproj create mode 100644 plugins/testplugin/testplug.vcxproj.filters (limited to 'plugins') diff --git a/plugins/testplugin/testplug.c b/plugins/testplugin/testplug.c deleted file mode 100644 index 46f9d0f398..0000000000 --- a/plugins/testplugin/testplug.c +++ /dev/null @@ -1,71 +0,0 @@ -/* -Miranda plugin template, originally by Richard Hughes -http://miranda-icq.sourceforge.net/ - -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 - -HINSTANCE hInst; - -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-icq.sourceforge.net/", - 0, //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; -} - -static int PluginMenuCommand(WPARAM wParam,LPARAM lParam) -{ - MessageBox(NULL,"Just groovy, baby!","Plugin-o-rama",MB_OK); - return 0; -} - -__declspec(dllexport) PLUGININFOEX* MirandaPluginInfoEx(DWORD mirandaVersion) -{ - return &pluginInfo; -} - -extern "C" __declspec(dllexport) const MUUID interfaces[] = {MIID_TESTPLUGIN, MIID_LAST}; - -int __declspec(dllexport) Load(PLUGINLINK *link) -{ - CLISTMENUITEM mi; - - CreateServiceFunction("TestPlug/MenuCommand",PluginMenuCommand); - ZeroMemory(&mi,sizeof(mi)); - mi.cbSize=sizeof(mi); - mi.position=-0x7FFFFFFF; - mi.flags=0; - mi.hIcon=LoadSkinnedIcon(SKINICON_OTHER_MIRANDA); - mi.pszName=LPGEN("&Test Plugin..."); - mi.pszService ="TestPlug/MenuCommand"; - Menu_AddMenuItem(&mi); - return 0; -} - -int __declspec(dllexport) Unload(void) -{ - return 0; -} diff --git a/plugins/testplugin/testplug.cpp b/plugins/testplugin/testplug.cpp new file mode 100644 index 0000000000..2c98789edc --- /dev/null +++ b/plugins/testplugin/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.dsp b/plugins/testplugin/testplug.dsp deleted file mode 100644 index 740cd257e2..0000000000 --- a/plugins/testplugin/testplug.dsp +++ /dev/null @@ -1,107 +0,0 @@ -# Microsoft Developer Studio Project File - Name="testplug" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 - -CFG=testplug - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "testplug.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "testplug.mak" CFG="testplug - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "testplug - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "testplug - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "testplug - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "Release" -# PROP Intermediate_Dir "Release" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "TESTPLUG_EXPORTS" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GX /O2 /I "../../include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "TESTPLUG_EXPORTS" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386 -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386 /out:"../../bin/release/plugins/testplug.dll" - -!ELSEIF "$(CFG)" == "testplug - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "Debug" -# PROP Intermediate_Dir "Debug" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "TESTPLUG_EXPORTS" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /I "../../include" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "TESTPLUG_EXPORTS" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /out:"../../bin/debug/plugins/testplug.dll" /pdbtype:sept - -!ENDIF - -# Begin Target - -# Name "testplug - Win32 Release" -# Name "testplug - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=.\testplug.c -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project diff --git a/plugins/testplugin/testplug.dsw b/plugins/testplugin/testplug.dsw deleted file mode 100644 index da081a21f7..0000000000 --- a/plugins/testplugin/testplug.dsw +++ /dev/null @@ -1,29 +0,0 @@ -Microsoft Developer Studio Workspace File, Format Version 6.00 -# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! - -############################################################################### - -Project: "testplug"=".\testplug.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ -}}} - -############################################################################### - -Global: - -Package=<5> -{{{ -}}} - -Package=<3> -{{{ -}}} - -############################################################################### - diff --git a/plugins/testplugin/testplug.vcxproj b/plugins/testplugin/testplug.vcxproj new file mode 100644 index 0000000000..043781f2be --- /dev/null +++ b/plugins/testplugin/testplug.vcxproj @@ -0,0 +1,218 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + + + + + + + + + DynamicLibrary + Unicode + + + DynamicLibrary + Unicode + + + DynamicLibrary + Unicode + true + + + DynamicLibrary + Unicode + true + + + + + + + + + + + + + + + + + + + + + + + $(SolutionDir)$(Configuration)\Plugins\ + $(SolutionDir)$(Configuration)\Obj\$(ProjectName)\ + true + + + $(SolutionDir)$(Configuration)64\Plugins\ + $(SolutionDir)$(Configuration)64\Obj\$(ProjectName)\ + true + + + $(SolutionDir)$(Configuration)\Plugins\ + $(SolutionDir)$(Configuration)\Obj\$(ProjectName)\ + true + + + $(SolutionDir)$(Configuration)64\Plugins\ + $(SolutionDir)$(Configuration)64\Obj\$(ProjectName)\ + true + + + + OnlyExplicitInline + true + true + Full + Level3 + ..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + + + true + NDEBUG;%(PreprocessorDefinitions) + .\Release\testplug.tlb + true + Win32 + + + 0x0809 + NDEBUG;%(PreprocessorDefinitions) + + + + true + Windows + $(IntDir)$(TargetName).lib + $(SolutionDir)\lib + true + true + true + false + + + + + OnlyExplicitInline + true + true + Full + Level3 + ..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) + WIN64;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + + + true + NDEBUG;%(PreprocessorDefinitions) + .\Release\testplug.tlb + true + + + 0x0809 + NDEBUG;%(PreprocessorDefinitions) + + + + true + Windows + $(IntDir)$(TargetName).lib + $(SolutionDir)\lib + true + true + true + false + + + + + MultiThreadedDebugDLL + false + Disabled + Level3 + true + EditAndContinue + ..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) + WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + EnableFastChecks + + + true + _DEBUG;%(PreprocessorDefinitions) + .\Debug\testplug.tlb + true + Win32 + + + 0x0809 + _DEBUG;%(PreprocessorDefinitions) + + + + true + true + Windows + $(IntDir)$(TargetName).lib + $(SolutionDir)\lib + false + + + + + MultiThreadedDebugDLL + false + Disabled + Level3 + ..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) + WIN64;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) + EnableFastChecks + + + true + _DEBUG;%(PreprocessorDefinitions) + .\Debug\testplug.tlb + true + + + 0x0809 + _DEBUG;%(PreprocessorDefinitions) + + + + true + true + Windows + $(IntDir)$(TargetName).lib + $(SolutionDir)\lib + false + + + + + + \ No newline at end of file diff --git a/plugins/testplugin/testplug.vcxproj.filters b/plugins/testplugin/testplug.vcxproj.filters new file mode 100644 index 0000000000..6f57ac5bd9 --- /dev/null +++ b/plugins/testplugin/testplug.vcxproj.filters @@ -0,0 +1,22 @@ + + + + + {88cca963-381d-42ab-a6e5-ee52ef046ae3} + cpp;c;cxx;rc;def;r;odl;idl;hpj;bat + + + {27fed274-8a4f-4b06-9ac7-fbe7ce655ffb} + h;hpp;hxx;hm;inl + + + {73f1a4d8-ea59-4f1a-ac4d-471cfd59b402} + ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe + + + + + Source Files + + + \ No newline at end of file -- cgit v1.2.3