From 9404a7af6b32f11c87a19320b39841a93a831bb7 Mon Sep 17 00:00:00 2001 From: Kirill Volinsky Date: Sat, 9 Mar 2013 20:54:36 +0000 Subject: added precompiled header added version info git-svn-id: http://svn.miranda-ng.org/main/trunk@3950 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/StopSpamMod/res/Version.rc | 38 +++++++ plugins/StopSpamMod/res/stopspam.rc | 56 +--------- plugins/StopSpamMod/src/eventhooker.cpp | 3 +- plugins/StopSpamMod/src/eventhooker.h | 6 -- plugins/StopSpamMod/src/headers.h | 33 ++---- plugins/StopSpamMod/src/init.cpp | 21 ++-- plugins/StopSpamMod/src/options.cpp | 4 - plugins/StopSpamMod/src/options.h | 1 - plugins/StopSpamMod/src/stdafx.cpp | 18 ++++ plugins/StopSpamMod/src/stopspam.cpp | 1 - plugins/StopSpamMod/src/version.h | 20 ++-- plugins/StopSpamMod/stopspam_mod_10.vcxproj | 117 ++++++--------------- .../StopSpamMod/stopspam_mod_10.vcxproj.filters | 9 +- plugins/StopSpamMod/stopspam_mod_11.vcxproj | 117 ++++++--------------- .../StopSpamMod/stopspam_mod_11.vcxproj.filters | 9 +- 15 files changed, 173 insertions(+), 280 deletions(-) create mode 100644 plugins/StopSpamMod/res/Version.rc delete mode 100755 plugins/StopSpamMod/src/options.h create mode 100644 plugins/StopSpamMod/src/stdafx.cpp (limited to 'plugins/StopSpamMod') diff --git a/plugins/StopSpamMod/res/Version.rc b/plugins/StopSpamMod/res/Version.rc new file mode 100644 index 0000000000..5bfbab4754 --- /dev/null +++ b/plugins/StopSpamMod/res/Version.rc @@ -0,0 +1,38 @@ +// Microsoft Visual C++ generated resource script. +// +#ifdef APSTUDIO_INVOKED +#error this file is not editable by Microsoft Visual C++ +#endif //APSTUDIO_INVOKED + +#include "afxres.h" +#include "..\src\version.h" + +VS_VERSION_INFO VERSIONINFO + FILEVERSION __FILEVERSION_STRING + PRODUCTVERSION __FILEVERSION_STRING + FILEFLAGSMASK 0x17L +#ifdef _DEBUG + FILEFLAGS 0x1L +#else + FILEFLAGS 0x0L +#endif + FILEOS 0x4L + FILETYPE 0x0L + FILESUBTYPE 0x0L +BEGIN + BLOCK "StringFileInfo" + BEGIN + BLOCK "000004b0" + BEGIN + VALUE "FileDescription", __DESCRIPTION + VALUE "InternalName", __PLUGIN_NAME + VALUE "LegalCopyright", __COPYRIGHT + VALUE "OriginalFilename", __FILENAME + VALUE "ProductName", __PLUGIN_NAME + END + END + BLOCK "VarFileInfo" + BEGIN + VALUE "Translation", 0x0, 1200 + END +END diff --git a/plugins/StopSpamMod/res/stopspam.rc b/plugins/StopSpamMod/res/stopspam.rc index 43a528e585..253198ab30 100755 --- a/plugins/StopSpamMod/res/stopspam.rc +++ b/plugins/StopSpamMod/res/stopspam.rc @@ -1,6 +1,6 @@ // Microsoft Visual C++ generated resource script. // -#include "src/resource.h" +#include "..\src\resource.h" #define APSTUDIO_READONLY_SYMBOLS ///////////////////////////////////////////////////////////////////////////// @@ -152,56 +152,6 @@ END #endif // APSTUDIO_INVOKED -///////////////////////////////////////////////////////////////////////////// -// -// Version -// - -VS_VERSION_INFO VERSIONINFO - FILEVERSION 0,0,2,0 - PRODUCTVERSION 0,7,0,0 - FILEFLAGSMASK 0x3fL -#ifdef _DEBUG - FILEFLAGS 0x1L -#else - FILEFLAGS 0x0L -#endif - FILEOS 0x40004L - FILETYPE 0x1L - FILESUBTYPE 0x0L -BEGIN - BLOCK "StringFileInfo" - BEGIN - BLOCK "000004b0" - BEGIN - VALUE "Comments", "Licensed under the terms of the GNU General Public License" - VALUE "CompanyName", " " - VALUE "FileDescription", "StopSpam plugin for Miranda NG" - VALUE "FileVersion", "0.0.2.0" - VALUE "InternalName", "stopspam" - VALUE "LegalCopyright", "Copyright © 2000-2010 Miranda IM Project, 2012 Miranda NG Project. This software is released under the terms of the GNU General Public License." - VALUE "OriginalFilename", "stopspam.dll" - VALUE "ProductName", "StopSpam" - VALUE "ProductVersion", "0.7.0.0" - END - END - BLOCK "VarFileInfo" - BEGIN - VALUE "Translation", 0x0, 1200 - END -END - -#endif // Русский (Россия) resources -///////////////////////////////////////////////////////////////////////////// - - -///////////////////////////////////////////////////////////////////////////// -// Английский (США) resources - -#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU) -LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US -#pragma code_page(1252) - #ifdef APSTUDIO_INVOKED ///////////////////////////////////////////////////////////////////////////// // @@ -210,7 +160,7 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US 1 TEXTINCLUDE BEGIN - "resource.h\0" + "..\\src\\resource.h\0" END 2 TEXTINCLUDE @@ -227,7 +177,7 @@ END #endif // APSTUDIO_INVOKED -#endif // Английский (США) resources +#endif // Русский (Россия) resources ///////////////////////////////////////////////////////////////////////////// diff --git a/plugins/StopSpamMod/src/eventhooker.cpp b/plugins/StopSpamMod/src/eventhooker.cpp index 5518577bac..f127e0c1f0 100755 --- a/plugins/StopSpamMod/src/eventhooker.cpp +++ b/plugins/StopSpamMod/src/eventhooker.cpp @@ -16,8 +16,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -#include -#include "eventhooker.h" +#include "headers.h" namespace miranda { diff --git a/plugins/StopSpamMod/src/eventhooker.h b/plugins/StopSpamMod/src/eventhooker.h index 31640ffafa..4a5ef3b9fc 100755 --- a/plugins/StopSpamMod/src/eventhooker.h +++ b/plugins/StopSpamMod/src/eventhooker.h @@ -19,12 +19,6 @@ #ifndef EVENTHOOKER_H_C8EAA58A_7C4D_45f7_A88E_0E41FE93754D #define EVENTHOOKER_H_C8EAA58A_7C4D_45f7_A88E_0E41FE93754D -#pragma warning( once : 4430 ) - -#include -#include -#include - namespace miranda { diff --git a/plugins/StopSpamMod/src/headers.h b/plugins/StopSpamMod/src/headers.h index 18993e70ef..40b22fe761 100755 --- a/plugins/StopSpamMod/src/headers.h +++ b/plugins/StopSpamMod/src/headers.h @@ -1,46 +1,33 @@ +#define _CRT_SECURE_NO_WARNINGS + #include -#include -#include -#include -#include -#include -#include #include - #include #include #include #include -#include #include #include #include -#include #include #include #include +#include +#include +#include +#include +#include +#include #include "globals.h" #include "stopspam.h" -#include "options.h" #include "eventhooker.h" #include "version.h" #include "resource.h" #include "utilities.h" +#include "utf8.h" -//boost -#include -#include -#include -#include -#include -#include - -//utf8cpp -#include - - -//#include +extern HINSTANCE hInst; \ No newline at end of file diff --git a/plugins/StopSpamMod/src/init.cpp b/plugins/StopSpamMod/src/init.cpp index 63665337f9..e6797ef11d 100755 --- a/plugins/StopSpamMod/src/init.cpp +++ b/plugins/StopSpamMod/src/init.cpp @@ -18,8 +18,6 @@ #include "headers.h" - - BOOL gbDosServiceExist = 0; BOOL gbVarsServiceExist = 0; @@ -54,7 +52,6 @@ tstring gbQuestion; tstring gbAnswer; tstring gbCongratulation; std::wstring gbAuthRepl; -extern char * pluginDescription; extern TCHAR const * defQuestion; extern int RemoveTmp(WPARAM,LPARAM); @@ -66,16 +63,16 @@ extern int RemoveTmp(WPARAM,LPARAM); PLUGININFOEX pluginInfoEx = { sizeof(PLUGININFOEX), - pluginName" mod", - PLUGIN_MAKE_VERSION(0, 0, 2, 0), - pluginDescription, - "Roman Miklashevsky, sss, Elzor", - "sss123next@list.ru", - "© 2004-2012 Roman Miklashevsky, A. Petkevich, Kosh&chka, sss, Elzor", - "http://sss.chaoslab.ru/tracker/mim_plugs/", + __PLUGIN_NAME, + PLUGIN_MAKE_VERSION(__MAJOR_VERSION, __MINOR_VERSION, __RELEASE_NUM, __BUILD_NUM), + __DESCRIPTION, + __AUTHOR, + __AUTHOREMAIL, + __COPYRIGHT, + __AUTHORWEB, UNICODE_AWARE, - // {553811EE-DEB6-48b8-8902-A8A00C1FD679} - { 0x553811ee, 0xdeb6, 0x48b8, { 0x89, 0x2, 0xa8, 0xa0, 0xc, 0x1f, 0xd6, 0x79 } } + // {553811EE-DEB6-48B8-8902-A8A00C1FD679} + {0x553811ee, 0xdeb6, 0x48b8, {0x89, 0x2, 0xa8, 0xa0, 0xc, 0x1f, 0xd6, 0x79}} }; extern "C" __declspec(dllexport) PLUGININFOEX* MirandaPluginInfoEx(DWORD) diff --git a/plugins/StopSpamMod/src/options.cpp b/plugins/StopSpamMod/src/options.cpp index fe4228ca6b..a3acf55204 100755 --- a/plugins/StopSpamMod/src/options.cpp +++ b/plugins/StopSpamMod/src/options.cpp @@ -15,17 +15,13 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ - -#define MIRANDA_VER 0x0800 #include "headers.h" char * pluginDescription = LPGEN("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 * defQuestion = TranslateT("Spammers made me to install small anti-spam system you are now speaking with.\r\nPlease reply \"nospam\" without quotes and spaces if you want to contact me."); - INT_PTR CALLBACK MainDlgProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam) { - switch(msg) { case WM_INITDIALOG: diff --git a/plugins/StopSpamMod/src/options.h b/plugins/StopSpamMod/src/options.h deleted file mode 100755 index e32791e98b..0000000000 --- a/plugins/StopSpamMod/src/options.h +++ /dev/null @@ -1 +0,0 @@ -extern HINSTANCE hInst; \ No newline at end of file diff --git a/plugins/StopSpamMod/src/stdafx.cpp b/plugins/StopSpamMod/src/stdafx.cpp new file mode 100644 index 0000000000..48d92d3d56 --- /dev/null +++ b/plugins/StopSpamMod/src/stdafx.cpp @@ -0,0 +1,18 @@ +/* +Copyright (C) 2012-13 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/StopSpamMod/src/stopspam.cpp b/plugins/StopSpamMod/src/stopspam.cpp index 4ac29df394..d5eba48f04 100755 --- a/plugins/StopSpamMod/src/stopspam.cpp +++ b/plugins/StopSpamMod/src/stopspam.cpp @@ -18,7 +18,6 @@ #include "headers.h" - MIRANDA_HOOK_EVENT(ME_DB_CONTACT_ADDED, w, l) { return 0; diff --git a/plugins/StopSpamMod/src/version.h b/plugins/StopSpamMod/src/version.h index 1641ff5c9c..2f880e7933 100755 --- a/plugins/StopSpamMod/src/version.h +++ b/plugins/StopSpamMod/src/version.h @@ -1,6 +1,14 @@ -#ifndef VERSION_H_CAA3B062_9BEE_40e6_A9F9_20BBF467731B -#define VERSION_H_CAA3B062_9BEE_40e6_A9F9_20BBF467731B - -#define SUBWCREV (0) - -#endif +#define __MAJOR_VERSION 0 +#define __MINOR_VERSION 0 +#define __RELEASE_NUM 2 +#define __BUILD_NUM 0 + +#define __FILEVERSION_STRING __MAJOR_VERSION,__MINOR_VERSION,__RELEASE_NUM,__BUILD_NUM + +#define __PLUGIN_NAME "StopSpam mod" +#define __FILENAME "StopSpamMod.dll" +#define __DESCRIPTION "Antispam plugin for Miranda NG." +#define __AUTHOR "Roman Miklashevsky, sss, Elzor" +#define __AUTHOREMAIL "sss123next@list.ru" +#define __AUTHORWEB "http://miranda-ng.org/" +#define __COPYRIGHT "© 2004-2012 Roman Miklashevsky, A. Petkevich, Kosh&chka, sss, Elzor" diff --git a/plugins/StopSpamMod/stopspam_mod_10.vcxproj b/plugins/StopSpamMod/stopspam_mod_10.vcxproj index 6223f41416..347553fcee 100644 --- a/plugins/StopSpamMod/stopspam_mod_10.vcxproj +++ b/plugins/StopSpamMod/stopspam_mod_10.vcxproj @@ -21,8 +21,6 @@ StopSpamMod {0FF6989B-880A-4C3F-B69D-AFF93296044D} - stopspam - Win32Proj @@ -48,188 +46,137 @@ - - - - <_ProjectFileVersion>10.0.30319.1 $(SolutionDir)$(Configuration)\Plugins\ - $(SolutionDir)$(Configuration)64/Plugins\ + $(SolutionDir)$(Configuration)64\Plugins\ $(SolutionDir)$(Configuration)\Obj\$(ProjectName)\ - $(SolutionDir)$(Configuration)64/Obj/$(ProjectName)\ - false - false - $(SolutionDir)$(Configuration)/Plugins\ - $(SolutionDir)$(Configuration)64/Plugins\ - $(SolutionDir)$(Configuration)/Obj/$(ProjectName)\ - $(SolutionDir)$(Configuration)64/Obj/$(ProjectName)\ - false - false + $(SolutionDir)$(Configuration)64\Obj\$(ProjectName)\ + $(SolutionDir)$(Configuration)\Plugins\ + $(SolutionDir)$(Configuration)64\Plugins\ + $(SolutionDir)$(Configuration)\Obj\$(ProjectName)\ + $(SolutionDir)$(Configuration)64\Obj\$(ProjectName)\ + true - - - - Disabled - .\src\include;..\..\..\boost;..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;STOPSPAM_EXPORTS;%(PreprocessorDefinitions);_UNICODE;UNICODE;_CRT_SECURE_NO_DEPRECATE + src\include;..\..\..\boost;..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) + WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) true EnableFastChecks MultiThreadedDebugDLL - - + Use Level3 - ProgramDatabase + EditAndContinue + headers.h true Windows false - - $(IntDir)$(TargetName).lib - MachineX86 $(ProfileDir)..\..\bin10\lib;..\..\..\boost\stage\lib ..\..\include\msapi + _DEBUG;%(PreprocessorDefinitions) - - - - Disabled - .\src\include;..\..\..\boost;..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - WIN64;_DEBUG;_WINDOWS;_USRDLL;STOPSPAM_EXPORTS;%(PreprocessorDefinitions);_UNICODE;UNICODE;_CRT_SECURE_NO_DEPRECATE + src\include;..\..\..\boost;..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) + WIN64;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) EnableFastChecks MultiThreadedDebugDLL - - + Use Level3 - ProgramDatabase + headers.h true Windows false - - $(IntDir)$(TargetName).lib $(ProfileDir)..\..\bin10\lib;..\..\..\boost\stage64\lib ..\..\include\msapi + _DEBUG;%(PreprocessorDefinitions) - - - - Full OnlyExplicitInline - .\src\include;..\..\..\boost;..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;STOPSPAM_EXPORTS;%(PreprocessorDefinitions);_UNICODE;UNICODE + src\include;..\..\..\boost;..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) true - MultiThreadedDLL true - - + Use Level3 - - - Default - 4996;%(DisableSpecificWarnings) Size + headers.h true - true - NotSet + Windows true true false - - $(IntDir)$(TargetName).lib - MachineX86 $(ProfileDir)..\..\bin10\lib;..\..\..\boost\stage\lib /PDBALTPATH:%_PDB% - - - - ..\..\include\msapi + NDEBUG;%(PreprocessorDefinitions) - - - - Full OnlyExplicitInline - .\src\include;..\..\..\boost;..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - WIN64;NDEBUG;_WINDOWS;_USRDLL;STOPSPAM_EXPORTS;%(PreprocessorDefinitions) + src\include;..\..\..\boost;..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) + WIN64;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) true - MultiThreadedDLL true - - + Use Level3 - - - Default - 4996;%(DisableSpecificWarnings) Size + headers.h true - true - NotSet + Windows true true false - - $(IntDir)$(TargetName).lib $(ProfileDir)..\..\bin10\lib;..\..\..\boost\stage64\lib /PDBALTPATH:%_PDB% - - - - ..\..\include\msapi + NDEBUG;%(PreprocessorDefinitions) - @@ -239,11 +186,15 @@ + + Create + + diff --git a/plugins/StopSpamMod/stopspam_mod_10.vcxproj.filters b/plugins/StopSpamMod/stopspam_mod_10.vcxproj.filters index ae17f570aa..ad0c220021 100644 --- a/plugins/StopSpamMod/stopspam_mod_10.vcxproj.filters +++ b/plugins/StopSpamMod/stopspam_mod_10.vcxproj.filters @@ -24,9 +24,6 @@ Header Files - - Header Files - Header Files @@ -56,10 +53,16 @@ Source Files + + Source Files + Resource Files + + Resource Files + \ No newline at end of file diff --git a/plugins/StopSpamMod/stopspam_mod_11.vcxproj b/plugins/StopSpamMod/stopspam_mod_11.vcxproj index e2d08ad6b5..62ef3078c4 100644 --- a/plugins/StopSpamMod/stopspam_mod_11.vcxproj +++ b/plugins/StopSpamMod/stopspam_mod_11.vcxproj @@ -21,8 +21,6 @@ StopSpamMod {0FF6989B-880A-4C3F-B69D-AFF93296044D} - stopspam - Win32Proj @@ -52,188 +50,137 @@ - - - - <_ProjectFileVersion>10.0.30319.1 $(SolutionDir)$(Configuration)\Plugins\ - $(SolutionDir)$(Configuration)64/Plugins\ + $(SolutionDir)$(Configuration)64\Plugins\ $(SolutionDir)$(Configuration)\Obj\$(ProjectName)\ - $(SolutionDir)$(Configuration)64/Obj/$(ProjectName)\ - false - false - $(SolutionDir)$(Configuration)/Plugins\ - $(SolutionDir)$(Configuration)64/Plugins\ - $(SolutionDir)$(Configuration)/Obj/$(ProjectName)\ - $(SolutionDir)$(Configuration)64/Obj/$(ProjectName)\ - false - false + $(SolutionDir)$(Configuration)64\Obj\$(ProjectName)\ + $(SolutionDir)$(Configuration)\Plugins\ + $(SolutionDir)$(Configuration)64\Plugins\ + $(SolutionDir)$(Configuration)\Obj\$(ProjectName)\ + $(SolutionDir)$(Configuration)64\Obj\$(ProjectName)\ + true - - - - Disabled - .\src\include;..\..\..\boost;..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;STOPSPAM_EXPORTS;%(PreprocessorDefinitions);_UNICODE;UNICODE;_CRT_SECURE_NO_DEPRECATE + src\include;..\..\..\boost;..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) + WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) true EnableFastChecks MultiThreadedDebugDLL - - + Use Level3 - ProgramDatabase + EditAndContinue + headers.h true Windows false - - $(IntDir)$(TargetName).lib - MachineX86 $(ProfileDir)..\..\bin11\lib;..\..\..\boost\stage\lib ..\..\include\msapi + _DEBUG;%(PreprocessorDefinitions) - - - - Disabled - .\src\include;..\..\..\boost;..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - WIN64;_DEBUG;_WINDOWS;_USRDLL;STOPSPAM_EXPORTS;%(PreprocessorDefinitions);_UNICODE;UNICODE;_CRT_SECURE_NO_DEPRECATE + src\include;..\..\..\boost;..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) + WIN64;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) EnableFastChecks MultiThreadedDebugDLL - - + Use Level3 - ProgramDatabase + headers.h true Windows false - - $(IntDir)$(TargetName).lib $(ProfileDir)..\..\bin11\lib;..\..\..\boost\stage64\lib ..\..\include\msapi + _DEBUG;%(PreprocessorDefinitions) - - - - Full OnlyExplicitInline - .\src\include;..\..\..\boost;..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;STOPSPAM_EXPORTS;%(PreprocessorDefinitions);_UNICODE;UNICODE + src\include;..\..\..\boost;..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) true - MultiThreadedDLL true - - + Use Level3 - - - Default - 4996;%(DisableSpecificWarnings) Size + headers.h true - true - NotSet + Windows true true false - - $(IntDir)$(TargetName).lib - MachineX86 $(ProfileDir)..\..\bin11\lib;..\..\..\boost\stage\lib /PDBALTPATH:%_PDB% - - - - ..\..\include\msapi + NDEBUG;%(PreprocessorDefinitions) - - - - Full OnlyExplicitInline - .\src\include;..\..\..\boost;..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - WIN64;NDEBUG;_WINDOWS;_USRDLL;STOPSPAM_EXPORTS;%(PreprocessorDefinitions) + src\include;..\..\..\boost;..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) + WIN64;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) true - MultiThreadedDLL true - - + Use Level3 - - - Default - 4996;%(DisableSpecificWarnings) Size + headers.h true - true - NotSet + Windows true true false - - $(IntDir)$(TargetName).lib $(ProfileDir)..\..\bin11\lib;..\..\..\boost\stage64\lib /PDBALTPATH:%_PDB% - - - - ..\..\include\msapi + NDEBUG;%(PreprocessorDefinitions) - @@ -243,11 +190,15 @@ + + Create + + diff --git a/plugins/StopSpamMod/stopspam_mod_11.vcxproj.filters b/plugins/StopSpamMod/stopspam_mod_11.vcxproj.filters index ae17f570aa..ad0c220021 100644 --- a/plugins/StopSpamMod/stopspam_mod_11.vcxproj.filters +++ b/plugins/StopSpamMod/stopspam_mod_11.vcxproj.filters @@ -24,9 +24,6 @@ Header Files - - Header Files - Header Files @@ -56,10 +53,16 @@ Source Files + + Source Files + Resource Files + + Resource Files + \ No newline at end of file -- cgit v1.2.3