From c1d55f386dda0203be456f8188070d0397711e32 Mon Sep 17 00:00:00 2001 From: Kirill Volinsky Date: Sat, 1 Aug 2015 18:59:39 +0000 Subject: stopspam: common project git-svn-id: http://svn.miranda-ng.org/main/trunk@14786 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/StopSpamPlus/src/eventhooker.cpp | 2 +- plugins/StopSpamPlus/src/events.cpp | 2 +- plugins/StopSpamPlus/src/headers.h | 58 ------- plugins/StopSpamPlus/src/opt_proto.cpp | 2 +- plugins/StopSpamPlus/src/options.cpp | 2 +- plugins/StopSpamPlus/src/services.cpp | 2 +- plugins/StopSpamPlus/src/settings.cpp | 2 +- plugins/StopSpamPlus/src/stdafx.cpp | 18 -- plugins/StopSpamPlus/src/stdafx.cxx | 18 ++ plugins/StopSpamPlus/src/stdafx.h | 58 +++++++ plugins/StopSpamPlus/src/stopspam.cpp | 2 +- plugins/StopSpamPlus/src/utils.cpp | 2 +- plugins/StopSpamPlus/stopspam.vcxproj | 28 +++ plugins/StopSpamPlus/stopspam.vcxproj.filters | 4 + plugins/StopSpamPlus/stopspam_10.vcxproj | 205 ---------------------- plugins/StopSpamPlus/stopspam_10.vcxproj.filters | 71 -------- plugins/StopSpamPlus/stopspam_12.vcxproj | 208 ----------------------- plugins/StopSpamPlus/stopspam_12.vcxproj.filters | 71 -------- plugins/StopSpamPlus/stopspam_14.vcxproj | 208 ----------------------- plugins/StopSpamPlus/stopspam_14.vcxproj.filters | 71 -------- 20 files changed, 116 insertions(+), 918 deletions(-) delete mode 100644 plugins/StopSpamPlus/src/headers.h delete mode 100644 plugins/StopSpamPlus/src/stdafx.cpp create mode 100644 plugins/StopSpamPlus/src/stdafx.cxx create mode 100644 plugins/StopSpamPlus/src/stdafx.h create mode 100644 plugins/StopSpamPlus/stopspam.vcxproj create mode 100644 plugins/StopSpamPlus/stopspam.vcxproj.filters delete mode 100644 plugins/StopSpamPlus/stopspam_10.vcxproj delete mode 100644 plugins/StopSpamPlus/stopspam_10.vcxproj.filters delete mode 100644 plugins/StopSpamPlus/stopspam_12.vcxproj delete mode 100644 plugins/StopSpamPlus/stopspam_12.vcxproj.filters delete mode 100644 plugins/StopSpamPlus/stopspam_14.vcxproj delete mode 100644 plugins/StopSpamPlus/stopspam_14.vcxproj.filters (limited to 'plugins') diff --git a/plugins/StopSpamPlus/src/eventhooker.cpp b/plugins/StopSpamPlus/src/eventhooker.cpp index a7ddd04d3f..8007779c01 100644 --- a/plugins/StopSpamPlus/src/eventhooker.cpp +++ b/plugins/StopSpamPlus/src/eventhooker.cpp @@ -16,7 +16,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -#include "headers.h" +#include "stdafx.h" namespace miranda { diff --git a/plugins/StopSpamPlus/src/events.cpp b/plugins/StopSpamPlus/src/events.cpp index e4b7d41e9c..b0c9802ac5 100644 --- a/plugins/StopSpamPlus/src/events.cpp +++ b/plugins/StopSpamPlus/src/events.cpp @@ -1,4 +1,4 @@ -#include "headers.h" +#include "stdafx.h" MIRANDA_HOOK_EVENT(ME_DB_EVENT_ADDED, wParam, lParam) { diff --git a/plugins/StopSpamPlus/src/headers.h b/plugins/StopSpamPlus/src/headers.h deleted file mode 100644 index 1b2ac5b2e1..0000000000 --- a/plugins/StopSpamPlus/src/headers.h +++ /dev/null @@ -1,58 +0,0 @@ -#ifndef _stopspam_headers_h -#define _stopspam_headers_h - -// disable security warnings about "*_s" functions -#define _CRT_SECURE_NO_DEPRECATE - -#include -#include -#include -#include - -#include -#include -#include -#include -#include -#include -#include -#include - -#include -#include - - -typedef std::wstring tstring; -#define PREF_TCHAR2 PREF_UTF - -#include "eventhooker.h" -#include "version.h" -#include "resource.h" -#include "settings.h" - -#define pluginName LPGEN("StopSpam") - -extern TCHAR * pluginDescription; -extern TCHAR const * infTalkProtPrefix; -extern char const * answeredSetting; -extern char const * questCountSetting; -extern HANDLE hLoadHook; -extern HINSTANCE hInst; - -//options -INT_PTR CALLBACK MainDlgProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam); -INT_PTR CALLBACK MessagesDlgProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam); -INT_PTR CALLBACK ProtoDlgProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam); - -//utils -void SetDlgItemString(HWND hwndDlg, UINT idItem, std::string const &str); -void SetDlgItemString(HWND hwndDlg, UINT idItem, std::wstring const &str); -tstring &GetDlgItemString(HWND hwnd, int id); -bool IsExistMyMessage(MCONTACT hContact); -tstring variables_parse(tstring const &tstrFormat, MCONTACT hContact); -tstring trim(tstring const &tstr, tstring const &trimChars = _T(" \f\n\r\t\v")); - -INT_PTR IsContactPassed(WPARAM wParam, LPARAM /*lParam*/); -INT_PTR RemoveTempContacts(WPARAM wParam,LPARAM lParam); -int OnSystemModulesLoaded(WPARAM wParam, LPARAM lParam); -#endif diff --git a/plugins/StopSpamPlus/src/opt_proto.cpp b/plugins/StopSpamPlus/src/opt_proto.cpp index cd3f17909c..ab4e3c7df0 100644 --- a/plugins/StopSpamPlus/src/opt_proto.cpp +++ b/plugins/StopSpamPlus/src/opt_proto.cpp @@ -1,4 +1,4 @@ -#include "headers.h" +#include "stdafx.h" struct ProtocolData { diff --git a/plugins/StopSpamPlus/src/options.cpp b/plugins/StopSpamPlus/src/options.cpp index 32c0b095f5..03105de55d 100644 --- a/plugins/StopSpamPlus/src/options.cpp +++ b/plugins/StopSpamPlus/src/options.cpp @@ -1,4 +1,4 @@ -#include "headers.h" +#include "stdafx.h" TCHAR * pluginDescription = TranslateT("No more spam! Robots can't go! Only human beings invited!\r\n\r\nThis plugin works pretty simple:\r\nWhile messages from users on your contact list go as there is no any anti-spam software, messages from unknown users are not delivered to you. But also they are not ignored, this plugin replies with a simple question, and if user gives the right answer, plugin adds him to your contact list so that he can contact you."); TCHAR const * infTalkProtPrefix = TranslateT("StopSpam automatic message:\r\n"); diff --git a/plugins/StopSpamPlus/src/services.cpp b/plugins/StopSpamPlus/src/services.cpp index 63fc504c18..2872181726 100644 --- a/plugins/StopSpamPlus/src/services.cpp +++ b/plugins/StopSpamPlus/src/services.cpp @@ -1,4 +1,4 @@ -#include "headers.h" +#include "stdafx.h" INT_PTR IsContactPassed(WPARAM hContact, LPARAM /*lParam*/) { diff --git a/plugins/StopSpamPlus/src/settings.cpp b/plugins/StopSpamPlus/src/settings.cpp index 0dce70de52..8e6e3cbbc6 100644 --- a/plugins/StopSpamPlus/src/settings.cpp +++ b/plugins/StopSpamPlus/src/settings.cpp @@ -1,4 +1,4 @@ -#include "headers.h" +#include "stdafx.h" //reading from database------------- tstring db_usage::DBGetPluginSetting(std::string const &name, tstring const &defValue) diff --git a/plugins/StopSpamPlus/src/stdafx.cpp b/plugins/StopSpamPlus/src/stdafx.cpp deleted file mode 100644 index 7e0216078c..0000000000 --- a/plugins/StopSpamPlus/src/stdafx.cpp +++ /dev/null @@ -1,18 +0,0 @@ -/* -Copyright (C) 2012-15 Miranda NG project (http://miranda-ng.org) - -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 version 2 -of the License. - -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, see . -*/ - -#include "headers.h" \ No newline at end of file diff --git a/plugins/StopSpamPlus/src/stdafx.cxx b/plugins/StopSpamPlus/src/stdafx.cxx new file mode 100644 index 0000000000..6fb37564b7 --- /dev/null +++ b/plugins/StopSpamPlus/src/stdafx.cxx @@ -0,0 +1,18 @@ +/* +Copyright (C) 2012-15 Miranda NG project (http://miranda-ng.org) + +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 version 2 +of the License. + +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, see . +*/ + +#include "stdafx.h" \ No newline at end of file diff --git a/plugins/StopSpamPlus/src/stdafx.h b/plugins/StopSpamPlus/src/stdafx.h new file mode 100644 index 0000000000..1b2ac5b2e1 --- /dev/null +++ b/plugins/StopSpamPlus/src/stdafx.h @@ -0,0 +1,58 @@ +#ifndef _stopspam_headers_h +#define _stopspam_headers_h + +// disable security warnings about "*_s" functions +#define _CRT_SECURE_NO_DEPRECATE + +#include +#include +#include +#include + +#include +#include +#include +#include +#include +#include +#include +#include + +#include +#include + + +typedef std::wstring tstring; +#define PREF_TCHAR2 PREF_UTF + +#include "eventhooker.h" +#include "version.h" +#include "resource.h" +#include "settings.h" + +#define pluginName LPGEN("StopSpam") + +extern TCHAR * pluginDescription; +extern TCHAR const * infTalkProtPrefix; +extern char const * answeredSetting; +extern char const * questCountSetting; +extern HANDLE hLoadHook; +extern HINSTANCE hInst; + +//options +INT_PTR CALLBACK MainDlgProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam); +INT_PTR CALLBACK MessagesDlgProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam); +INT_PTR CALLBACK ProtoDlgProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam); + +//utils +void SetDlgItemString(HWND hwndDlg, UINT idItem, std::string const &str); +void SetDlgItemString(HWND hwndDlg, UINT idItem, std::wstring const &str); +tstring &GetDlgItemString(HWND hwnd, int id); +bool IsExistMyMessage(MCONTACT hContact); +tstring variables_parse(tstring const &tstrFormat, MCONTACT hContact); +tstring trim(tstring const &tstr, tstring const &trimChars = _T(" \f\n\r\t\v")); + +INT_PTR IsContactPassed(WPARAM wParam, LPARAM /*lParam*/); +INT_PTR RemoveTempContacts(WPARAM wParam,LPARAM lParam); +int OnSystemModulesLoaded(WPARAM wParam, LPARAM lParam); +#endif diff --git a/plugins/StopSpamPlus/src/stopspam.cpp b/plugins/StopSpamPlus/src/stopspam.cpp index 287026da00..cb60154cca 100644 --- a/plugins/StopSpamPlus/src/stopspam.cpp +++ b/plugins/StopSpamPlus/src/stopspam.cpp @@ -1,4 +1,4 @@ -#include "headers.h" +#include "stdafx.h" HANDLE hFunc, hTempRemove, hLoadHook; int hLangpack; diff --git a/plugins/StopSpamPlus/src/utils.cpp b/plugins/StopSpamPlus/src/utils.cpp index 2e83400e19..e9fa955ba7 100644 --- a/plugins/StopSpamPlus/src/utils.cpp +++ b/plugins/StopSpamPlus/src/utils.cpp @@ -1,4 +1,4 @@ -#include "headers.h" +#include "stdafx.h" tstring &GetDlgItemString(HWND hwnd, int id) { diff --git a/plugins/StopSpamPlus/stopspam.vcxproj b/plugins/StopSpamPlus/stopspam.vcxproj new file mode 100644 index 0000000000..0c3866da18 --- /dev/null +++ b/plugins/StopSpamPlus/stopspam.vcxproj @@ -0,0 +1,28 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + StopSpam + {3E6CEC79-5E93-4607-B10E-498586ECF6A6} + + + + + \ No newline at end of file diff --git a/plugins/StopSpamPlus/stopspam.vcxproj.filters b/plugins/StopSpamPlus/stopspam.vcxproj.filters new file mode 100644 index 0000000000..de5ad9f66c --- /dev/null +++ b/plugins/StopSpamPlus/stopspam.vcxproj.filters @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/plugins/StopSpamPlus/stopspam_10.vcxproj b/plugins/StopSpamPlus/stopspam_10.vcxproj deleted file mode 100644 index 850a357dc3..0000000000 --- a/plugins/StopSpamPlus/stopspam_10.vcxproj +++ /dev/null @@ -1,205 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - StopSpam - {3E6CEC79-5E93-4607-B10E-498586ECF6A6} - - - - DynamicLibrary - Unicode - - - DynamicLibrary - Unicode - - - DynamicLibrary - Unicode - true - - - DynamicLibrary - Unicode - true - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>10.0.30319.1 - $(SolutionDir)$(Configuration)\Plugins\ - $(SolutionDir)$(Configuration)64\Plugins\ - $(SolutionDir)$(Configuration)\Obj\$(ProjectName)\ - $(SolutionDir)$(Configuration)64\Obj\$(ProjectName)\ - $(SolutionDir)$(Configuration)\Plugins\ - $(SolutionDir)$(Configuration)64\Plugins\ - $(SolutionDir)$(Configuration)\Obj\$(ProjectName)\ - $(SolutionDir)$(Configuration)64\Obj\$(ProjectName)\ - true - - - - Full - OnlyExplicitInline - ..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - true - true - Level3 - Size - Use - headers.h - - - comctl32.lib;%(AdditionalDependencies) - true - Windows - true - true - false - $(IntDir)$(TargetName).lib - $(ProfileDir)..\..\bin10\lib - /PDBALTPATH:%_PDB% - - - NDEBUG;%(PreprocessorDefinitions) - ..\..\include\msapi - - - - - Full - OnlyExplicitInline - ..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - true - true - Level3 - Size - Use - headers.h - - - comctl32.lib;%(AdditionalDependencies) - true - Windows - true - true - false - $(IntDir)$(TargetName).lib - $(ProfileDir)..\..\bin10\lib - /PDBALTPATH:%_PDB% - - - NDEBUG;%(PreprocessorDefinitions) - ..\..\include\msapi - - - - - Disabled - ..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - _DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - true - MultiThreadedDebugDLL - Level3 - EditAndContinue - Use - headers.h - - - true - Windows - false - $(IntDir)$(TargetName).lib - comctl32.lib;%(AdditionalDependencies) - $(ProfileDir)..\..\bin10\lib - - - _DEBUG;%(PreprocessorDefinitions) - ..\..\include\msapi - - - - - Disabled - ..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - _DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreadedDebugDLL - Level3 - Use - headers.h - - - comctl32.lib;%(AdditionalDependencies) - true - Windows - false - $(IntDir)$(TargetName).lib - $(ProfileDir)..\..\bin10\lib - - - _DEBUG;%(PreprocessorDefinitions) - ..\..\include\msapi - - - - - - - - - - - Create - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/plugins/StopSpamPlus/stopspam_10.vcxproj.filters b/plugins/StopSpamPlus/stopspam_10.vcxproj.filters deleted file mode 100644 index d74d563c37..0000000000 --- a/plugins/StopSpamPlus/stopspam_10.vcxproj.filters +++ /dev/null @@ -1,71 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - - - Resource Files - - - Resource Files - - - \ No newline at end of file diff --git a/plugins/StopSpamPlus/stopspam_12.vcxproj b/plugins/StopSpamPlus/stopspam_12.vcxproj deleted file mode 100644 index b5481a63c4..0000000000 --- a/plugins/StopSpamPlus/stopspam_12.vcxproj +++ /dev/null @@ -1,208 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - StopSpam - {3E6CEC79-5E93-4607-B10E-498586ECF6A6} - - - - DynamicLibrary - Unicode - v120_xp - - - DynamicLibrary - Unicode - v120_xp - - - DynamicLibrary - Unicode - true - v120_xp - - - DynamicLibrary - Unicode - true - v120_xp - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>10.0.30319.1 - $(SolutionDir)$(Configuration)\Plugins\ - $(SolutionDir)$(Configuration)64\Plugins\ - $(SolutionDir)$(Configuration)\Obj\$(ProjectName)\ - $(SolutionDir)$(Configuration)64\Obj\$(ProjectName)\ - $(SolutionDir)$(Configuration)\Plugins\ - $(SolutionDir)$(Configuration)64\Plugins\ - $(SolutionDir)$(Configuration)\Obj\$(ProjectName)\ - $(SolutionDir)$(Configuration)64\Obj\$(ProjectName)\ - true - - - - Full - OnlyExplicitInline - ..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - true - true - Level4 - Size - Use - headers.h - - - comctl32.lib;%(AdditionalDependencies) - true - Windows - true - true - false - $(IntDir)$(TargetName).lib - $(ProfileDir)..\..\bin12\lib - - - NDEBUG;%(PreprocessorDefinitions) - ..\..\include\msapi - - - - - Full - OnlyExplicitInline - ..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - true - true - Level4 - Size - Use - headers.h - - - comctl32.lib;%(AdditionalDependencies) - true - Windows - true - true - false - $(IntDir)$(TargetName).lib - $(ProfileDir)..\..\bin12\lib - - - NDEBUG;%(PreprocessorDefinitions) - ..\..\include\msapi - - - - - Disabled - ..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - _DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - true - MultiThreadedDebugDLL - Level4 - EditAndContinue - Use - headers.h - - - true - Windows - false - $(IntDir)$(TargetName).lib - comctl32.lib;%(AdditionalDependencies) - $(ProfileDir)..\..\bin12\lib - false - - - _DEBUG;%(PreprocessorDefinitions) - ..\..\include\msapi - - - - - Disabled - ..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - _DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreadedDebugDLL - Level4 - Use - headers.h - - - comctl32.lib;%(AdditionalDependencies) - true - Windows - false - $(IntDir)$(TargetName).lib - $(ProfileDir)..\..\bin12\lib - - - _DEBUG;%(PreprocessorDefinitions) - ..\..\include\msapi - - - - - - - - - - - Create - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/plugins/StopSpamPlus/stopspam_12.vcxproj.filters b/plugins/StopSpamPlus/stopspam_12.vcxproj.filters deleted file mode 100644 index d74d563c37..0000000000 --- a/plugins/StopSpamPlus/stopspam_12.vcxproj.filters +++ /dev/null @@ -1,71 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - - - Resource Files - - - Resource Files - - - \ No newline at end of file diff --git a/plugins/StopSpamPlus/stopspam_14.vcxproj b/plugins/StopSpamPlus/stopspam_14.vcxproj deleted file mode 100644 index e78636919c..0000000000 --- a/plugins/StopSpamPlus/stopspam_14.vcxproj +++ /dev/null @@ -1,208 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - StopSpam - {3E6CEC79-5E93-4607-B10E-498586ECF6A6} - - - - DynamicLibrary - Unicode - v140_xp - - - DynamicLibrary - Unicode - v140_xp - - - DynamicLibrary - Unicode - true - v140_xp - - - DynamicLibrary - Unicode - true - v140_xp - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>10.0.30319.1 - $(SolutionDir)$(Configuration)\Plugins\ - $(SolutionDir)$(Configuration)64\Plugins\ - $(SolutionDir)$(Configuration)\Obj\$(ProjectName)\ - $(SolutionDir)$(Configuration)64\Obj\$(ProjectName)\ - $(SolutionDir)$(Configuration)\Plugins\ - $(SolutionDir)$(Configuration)64\Plugins\ - $(SolutionDir)$(Configuration)\Obj\$(ProjectName)\ - $(SolutionDir)$(Configuration)64\Obj\$(ProjectName)\ - true - - - - Full - OnlyExplicitInline - ..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - true - true - Level4 - Size - Use - headers.h - - - comctl32.lib;%(AdditionalDependencies) - true - Windows - true - true - false - $(IntDir)$(TargetName).lib - $(ProfileDir)..\..\bin14\lib - - - NDEBUG;%(PreprocessorDefinitions) - ..\..\include\msapi - - - - - Full - OnlyExplicitInline - ..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - true - true - Level4 - Size - Use - headers.h - - - comctl32.lib;%(AdditionalDependencies) - true - Windows - true - true - false - $(IntDir)$(TargetName).lib - $(ProfileDir)..\..\bin14\lib - - - NDEBUG;%(PreprocessorDefinitions) - ..\..\include\msapi - - - - - Disabled - ..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - _DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - true - MultiThreadedDebugDLL - Level4 - EditAndContinue - Use - headers.h - - - true - Windows - false - $(IntDir)$(TargetName).lib - comctl32.lib;%(AdditionalDependencies) - $(ProfileDir)..\..\bin14\lib - false - - - _DEBUG;%(PreprocessorDefinitions) - ..\..\include\msapi - - - - - Disabled - ..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - _DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreadedDebugDLL - Level4 - Use - headers.h - - - comctl32.lib;%(AdditionalDependencies) - true - Windows - false - $(IntDir)$(TargetName).lib - $(ProfileDir)..\..\bin14\lib - - - _DEBUG;%(PreprocessorDefinitions) - ..\..\include\msapi - - - - - - - - - - - Create - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/plugins/StopSpamPlus/stopspam_14.vcxproj.filters b/plugins/StopSpamPlus/stopspam_14.vcxproj.filters deleted file mode 100644 index d74d563c37..0000000000 --- a/plugins/StopSpamPlus/stopspam_14.vcxproj.filters +++ /dev/null @@ -1,71 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - - - Resource Files - - - Resource Files - - - \ No newline at end of file -- cgit v1.2.3