From 1e92bf5cf72665b5fec103a0a70d734340725539 Mon Sep 17 00:00:00 2001 From: Vadim Dashevskiy Date: Tue, 24 Jul 2012 09:26:39 +0000 Subject: StopSpamPlus, TipperYM, TooltipNotify, TopToolBar, TranslitSwitcher, UserGuide: changed folder structure git-svn-id: http://svn.miranda-ng.org/main/trunk@1159 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- .../StopSpamPlus/docs/stopspamplus-translation.txt | 33 ++++++++++ plugins/StopSpamPlus/headers.h | 71 ---------------------- plugins/StopSpamPlus/res/resource.h | 33 ---------- plugins/StopSpamPlus/res/stopspam.rc | 4 +- plugins/StopSpamPlus/res/version.h | 51 ---------------- plugins/StopSpamPlus/res/version.rc | 2 +- plugins/StopSpamPlus/src/events.cpp | 2 +- plugins/StopSpamPlus/src/headers.h | 71 ++++++++++++++++++++++ plugins/StopSpamPlus/src/opt_proto.cpp | 2 +- plugins/StopSpamPlus/src/options.cpp | 2 +- plugins/StopSpamPlus/src/resource.h | 33 ++++++++++ plugins/StopSpamPlus/src/services.cpp | 2 +- plugins/StopSpamPlus/src/settings.cpp | 2 +- plugins/StopSpamPlus/src/settings.h | 2 +- plugins/StopSpamPlus/src/stopspam.cpp | 2 +- plugins/StopSpamPlus/src/utils.cpp | 2 +- plugins/StopSpamPlus/src/version.h | 51 ++++++++++++++++ plugins/StopSpamPlus/stopspam_10.vcxproj | 14 ++--- plugins/StopSpamPlus/stopspam_10.vcxproj.filters | 8 +-- plugins/StopSpamPlus/stopspamplus-translation.txt | 33 ---------- 20 files changed, 210 insertions(+), 210 deletions(-) create mode 100644 plugins/StopSpamPlus/docs/stopspamplus-translation.txt delete mode 100644 plugins/StopSpamPlus/headers.h delete mode 100644 plugins/StopSpamPlus/res/resource.h delete mode 100644 plugins/StopSpamPlus/res/version.h create mode 100644 plugins/StopSpamPlus/src/headers.h create mode 100644 plugins/StopSpamPlus/src/resource.h create mode 100644 plugins/StopSpamPlus/src/version.h delete mode 100644 plugins/StopSpamPlus/stopspamplus-translation.txt (limited to 'plugins/StopSpamPlus') diff --git a/plugins/StopSpamPlus/docs/stopspamplus-translation.txt b/plugins/StopSpamPlus/docs/stopspamplus-translation.txt new file mode 100644 index 0000000000..50b195e9f2 --- /dev/null +++ b/plugins/StopSpamPlus/docs/stopspamplus-translation.txt @@ -0,0 +1,33 @@ +; Common strings that belong to many files +;[] + +; ../../plugins/StopSpamPlus/res/stopspam.rc +;[ questions to one contact (0 - for no limit)] +;[Add contact permanently] +;[Answer (Use divider to separate answers):] +;[Answer is not case sensitive] +;[Auth. request reply:] +;[Congratulation:] +;[Disable protection for following protocols:] +;[Divider:] +;[Do not send more than ] +;[Enable StopSpam-StopSpam infinite talk protection] +;[Enable auth. requests blocking] +;[Log Spammers to system history] +;[Question: (Ctrl-Enter for carriage return)] +;[Remove all tempory contacts after restart] +;[Restore defaults] +;[Vars] + +; ../../plugins/StopSpamPlus/src/events.cpp +;[Main] +;[Message Sessions] +;[Messages] +;[Protocols] + +; ../../plugins/StopSpamPlus/src/services.cpp +;[Complete] +;[Not In List] + +; ../../plugins/StopSpamPlus/src/settings.h +;[nospam] diff --git a/plugins/StopSpamPlus/headers.h b/plugins/StopSpamPlus/headers.h deleted file mode 100644 index d80060d668..0000000000 --- a/plugins/StopSpamPlus/headers.h +++ /dev/null @@ -1,71 +0,0 @@ -#ifndef _stopspam_headers_h -#define _stopspam_headers_h - -// disable security warnings about "*_s" functions -#define _CRT_SECURE_NO_DEPRECATE - -// disable warnings about underscore in stdc functions -#pragma warning(disable: 4996) - -#define MIRANDA_VER 0x0A00 - -#include -#include -#include -#include -#include -#include - -#include -#include -#include -#include -#include -#include -#include -#include -#include - -#include "src/eventhooker.h" -#include "res/version.h" -#include "res/resource.h" -#include "m_stopspam.h" - -#include "m_variables.h" - -#define pluginName "StopSpam" - -extern char * pluginDescription; -extern TCHAR const * infTalkProtPrefix; -extern char const * answeredSetting; -extern char const * questCountSetting; -extern HANDLE hLoadHook; -extern HINSTANCE hInst; - -#ifdef _UNICODE - typedef std::wstring tstring; - #define PREF_TCHAR2 PREF_UTF -#else - typedef std::string tstring; - #define PREF_TCHAR2 0 -#endif //_UNICODE - -#include "src/settings.h" - -//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(HANDLE hContact); -tstring variables_parse(tstring const &tstrFormat, HANDLE 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/res/resource.h b/plugins/StopSpamPlus/res/resource.h deleted file mode 100644 index 62e603cb2e..0000000000 --- a/plugins/StopSpamPlus/res/resource.h +++ /dev/null @@ -1,33 +0,0 @@ -//{{NO_DEPENDENCIES}} -// Microsoft Visual C++ generated include file. -// Used by stopspam.rc -// -#define IDD_MESSAGES 101 -#define IDD_MAIN 102 -#define IDD_PROTO 103 -#define ID_DESCRIPTION 1001 -#define ID_QUESTION 1002 -#define ID_ANSWER 1003 -#define ID_CONGRATULATION 1004 -#define ID_RESTOREDEFAULTS 1005 -#define ID_AUTHREPL 1007 -#define ID_MAXQUESTCOUNT 1008 -#define IDC_PROTO 1009 -#define ID_INFTALKPROT 1010 -#define ID_ADDPERMANENT 1011 -#define ID_HANDLEAUTHREQ 1012 -#define ID_NOTCASESENS 1013 -#define ID_DIVIDER 1014 -#define IDC_VARS 1015 -#define ID_REMOVE_TMP_ALL 1016 -#define ID_HISTORY_LOG 1017 -// Next default values for new objects -// -#ifdef APSTUDIO_INVOKED -#ifndef APSTUDIO_READONLY_SYMBOLS -#define _APS_NEXT_RESOURCE_VALUE 104 -#define _APS_NEXT_COMMAND_VALUE 40001 -#define _APS_NEXT_CONTROL_VALUE 1018 -#define _APS_NEXT_SYMED_VALUE 101 -#endif -#endif diff --git a/plugins/StopSpamPlus/res/stopspam.rc b/plugins/StopSpamPlus/res/stopspam.rc index e6f3f1ffc1..4cb4a45a1c 100644 --- a/plugins/StopSpamPlus/res/stopspam.rc +++ b/plugins/StopSpamPlus/res/stopspam.rc @@ -1,6 +1,6 @@ // Microsoft Visual C++ generated resource script. // -#include "resource.h" +#include "..\src\resource.h" #define APSTUDIO_READONLY_SYMBOLS ///////////////////////////////////////////////////////////////////////////// @@ -123,7 +123,7 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US 1 TEXTINCLUDE BEGIN - "resource.h\0" + "..\\src\\resource.h\0" END 2 TEXTINCLUDE diff --git a/plugins/StopSpamPlus/res/version.h b/plugins/StopSpamPlus/res/version.h deleted file mode 100644 index feb992d6a3..0000000000 --- a/plugins/StopSpamPlus/res/version.h +++ /dev/null @@ -1,51 +0,0 @@ -// Set the version number here - it will affect the version resource and the version field of the pluginInfo structure -// (Be careful that you don't have the resource file open when you change this and rebuild, otherwise the changes may not -// take effect within the version resource) -// Do not forget to define symbol "_DEBUG" for resource compiler if you use debug configuration (in VisualStudio you can -// find it under Project properties - Configuration properties - Resource - General - Preprocessor definitions) - -// plugin version part -#define __MAJOR_VERSION 0 -#define __MINOR_VERSION 0 -#define __RELEASE_NUM 1 -#define __BUILD_NUM 4 -// plugin SVN Revision number -#define __REV_NUM 1548 - -// minimal MirandaIM version number, with which this plugin supposed to work -#define __PROD_MAJOR_VERSION 0 -#define __PROD_MINOR_VERSION 8 -#define __PROD_RELEASE_NUM 0 -#define __PROD_BUILD_NUM 0 -// if your plugin works only with Miranda core beginning from specific revision, you can include this information in Product Version resource -//#define __PROD_REV_NUM 1234 - -// stuff that will be used in PluginInfo section and in Version resource -#define __PLUGIN_NAME "StopSpam+" -#define __FILENAME "StopSpam.dll" -#define __DESC "No more spam! Robots can't go! Only human beings invited!" -#define __AUTHOR "Roman Miklashevsky, A. Petkevich, Kosh&chka, persei" -#define __AUTHOREMAIL "koshechka@miranda.im" -#define __AUTHORWEB "http://nightly.miranda.im/" -#define __COPYRIGHT "© 2004-2010 Roman Miklashevsky, A. Petkevich, Kosh&chka, persei" - -// other stuff for Version resource -#define __STRINGIFY_IMPL(x) #x -#define __STRINGIFY(x) __STRINGIFY_IMPL(x) - -#define __FILEVERSION_STRING __MAJOR_VERSION,__MINOR_VERSION,__RELEASE_NUM,__BUILD_NUM -#define __FILEVERSION_STRING_DOTS __MAJOR_VERSION.__MINOR_VERSION.__RELEASE_NUM.__BUILD_NUM - -#ifdef __REV_NUM -#define __VERSION_STRING __STRINGIFY(__FILEVERSION_STRING_DOTS rev. __REV_NUM) -#else -#define __VERSION_STRING __STRINGIFY(__FILEVERSION_STRING_DOTS) -#endif - -#define __PRODVERSION_STRING __PROD_MAJOR_VERSION,__PROD_MINOR_VERSION,__PROD_RELEASE_NUM,__PROD_BUILD_NUM -#define __PRODVERSION_STRING_DOTS __PROD_MAJOR_VERSION.__PROD_MINOR_VERSION.__PROD_RELEASE_NUM.__PROD_BUILD_NUM -#ifdef __PROD_REV_NUM -#define __PROD_VERSION_STRING __STRINGIFY(__PRODVERSION_STRING_DOTS rev. __PROD_REV_NUM) -#else -#define __PROD_VERSION_STRING __STRINGIFY(__PRODVERSION_STRING_DOTS+) -#endif diff --git a/plugins/StopSpamPlus/res/version.rc b/plugins/StopSpamPlus/res/version.rc index ebf0f96c65..75748ead8a 100644 --- a/plugins/StopSpamPlus/res/version.rc +++ b/plugins/StopSpamPlus/res/version.rc @@ -3,7 +3,7 @@ #endif //APSTUDIO_INVOKED #include "afxres.h" -#include "version.h" +#include "..\src\version.h" #ifdef _WIN32 LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL diff --git a/plugins/StopSpamPlus/src/events.cpp b/plugins/StopSpamPlus/src/events.cpp index c4943f8e0f..41f4d9e8eb 100644 --- a/plugins/StopSpamPlus/src/events.cpp +++ b/plugins/StopSpamPlus/src/events.cpp @@ -1,4 +1,4 @@ -#include "../headers.h" +#include "headers.h" MIRANDA_HOOK_EVENT(ME_DB_EVENT_ADDED, wParam, lParam) diff --git a/plugins/StopSpamPlus/src/headers.h b/plugins/StopSpamPlus/src/headers.h new file mode 100644 index 0000000000..6da161f793 --- /dev/null +++ b/plugins/StopSpamPlus/src/headers.h @@ -0,0 +1,71 @@ +#ifndef _stopspam_headers_h +#define _stopspam_headers_h + +// disable security warnings about "*_s" functions +#define _CRT_SECURE_NO_DEPRECATE + +// disable warnings about underscore in stdc functions +#pragma warning(disable: 4996) + +#define MIRANDA_VER 0x0A00 + +#include +#include +#include +#include +#include +#include + +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include "eventhooker.h" +#include "version.h" +#include "resource.h" +#include "m_stopspam.h" + +#include "m_variables.h" + +#define pluginName "StopSpam" + +extern char * pluginDescription; +extern TCHAR const * infTalkProtPrefix; +extern char const * answeredSetting; +extern char const * questCountSetting; +extern HANDLE hLoadHook; +extern HINSTANCE hInst; + +#ifdef _UNICODE + typedef std::wstring tstring; + #define PREF_TCHAR2 PREF_UTF +#else + typedef std::string tstring; + #define PREF_TCHAR2 0 +#endif //_UNICODE + +#include "settings.h" + +//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(HANDLE hContact); +tstring variables_parse(tstring const &tstrFormat, HANDLE 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 014a44e7c7..cfdfe0b991 100644 --- a/plugins/StopSpamPlus/src/opt_proto.cpp +++ b/plugins/StopSpamPlus/src/opt_proto.cpp @@ -1,4 +1,4 @@ -#include "../headers.h" +#include "headers.h" struct ProtocolData { diff --git a/plugins/StopSpamPlus/src/options.cpp b/plugins/StopSpamPlus/src/options.cpp index 52fab03e8f..221a06f480 100644 --- a/plugins/StopSpamPlus/src/options.cpp +++ b/plugins/StopSpamPlus/src/options.cpp @@ -1,4 +1,4 @@ -#include "../headers.h" +#include "headers.h" char * pluginDescription = "No more spam! Robots can't go! Only human beings invited!\r\n\r\n" "This plugin works pretty simple:\r\n" diff --git a/plugins/StopSpamPlus/src/resource.h b/plugins/StopSpamPlus/src/resource.h new file mode 100644 index 0000000000..62e603cb2e --- /dev/null +++ b/plugins/StopSpamPlus/src/resource.h @@ -0,0 +1,33 @@ +//{{NO_DEPENDENCIES}} +// Microsoft Visual C++ generated include file. +// Used by stopspam.rc +// +#define IDD_MESSAGES 101 +#define IDD_MAIN 102 +#define IDD_PROTO 103 +#define ID_DESCRIPTION 1001 +#define ID_QUESTION 1002 +#define ID_ANSWER 1003 +#define ID_CONGRATULATION 1004 +#define ID_RESTOREDEFAULTS 1005 +#define ID_AUTHREPL 1007 +#define ID_MAXQUESTCOUNT 1008 +#define IDC_PROTO 1009 +#define ID_INFTALKPROT 1010 +#define ID_ADDPERMANENT 1011 +#define ID_HANDLEAUTHREQ 1012 +#define ID_NOTCASESENS 1013 +#define ID_DIVIDER 1014 +#define IDC_VARS 1015 +#define ID_REMOVE_TMP_ALL 1016 +#define ID_HISTORY_LOG 1017 +// Next default values for new objects +// +#ifdef APSTUDIO_INVOKED +#ifndef APSTUDIO_READONLY_SYMBOLS +#define _APS_NEXT_RESOURCE_VALUE 104 +#define _APS_NEXT_COMMAND_VALUE 40001 +#define _APS_NEXT_CONTROL_VALUE 1018 +#define _APS_NEXT_SYMED_VALUE 101 +#endif +#endif diff --git a/plugins/StopSpamPlus/src/services.cpp b/plugins/StopSpamPlus/src/services.cpp index 1f9097446d..7fe08a9600 100644 --- a/plugins/StopSpamPlus/src/services.cpp +++ b/plugins/StopSpamPlus/src/services.cpp @@ -1,4 +1,4 @@ -#include "../headers.h" +#include "headers.h" INT_PTR IsContactPassed(WPARAM wParam, LPARAM /*lParam*/) { diff --git a/plugins/StopSpamPlus/src/settings.cpp b/plugins/StopSpamPlus/src/settings.cpp index 7d74b63919..05a9007d0c 100644 --- a/plugins/StopSpamPlus/src/settings.cpp +++ b/plugins/StopSpamPlus/src/settings.cpp @@ -1,4 +1,4 @@ -#include "../headers.h" +#include "headers.h" //reading from database------------- tstring db_usage::DBGetPluginSetting(std::string const &name, tstring const &defValue) diff --git a/plugins/StopSpamPlus/src/settings.h b/plugins/StopSpamPlus/src/settings.h index 99aa9322e8..86219ebf10 100644 --- a/plugins/StopSpamPlus/src/settings.h +++ b/plugins/StopSpamPlus/src/settings.h @@ -1,6 +1,6 @@ #pragma once -#include "../headers.h" +#include "headers.h" class db_usage { diff --git a/plugins/StopSpamPlus/src/stopspam.cpp b/plugins/StopSpamPlus/src/stopspam.cpp index 72d5e175c6..e58b8846ff 100644 --- a/plugins/StopSpamPlus/src/stopspam.cpp +++ b/plugins/StopSpamPlus/src/stopspam.cpp @@ -1,4 +1,4 @@ -#include "../headers.h" +#include "headers.h" HANDLE hFunc, hTempRemove, hLoadHook; int hLangpack; diff --git a/plugins/StopSpamPlus/src/utils.cpp b/plugins/StopSpamPlus/src/utils.cpp index 673a858ad2..7d8bc28050 100644 --- a/plugins/StopSpamPlus/src/utils.cpp +++ b/plugins/StopSpamPlus/src/utils.cpp @@ -1,4 +1,4 @@ -#include "../headers.h" +#include "headers.h" tstring &GetDlgItemString(HWND hwnd, int id) diff --git a/plugins/StopSpamPlus/src/version.h b/plugins/StopSpamPlus/src/version.h new file mode 100644 index 0000000000..feb992d6a3 --- /dev/null +++ b/plugins/StopSpamPlus/src/version.h @@ -0,0 +1,51 @@ +// Set the version number here - it will affect the version resource and the version field of the pluginInfo structure +// (Be careful that you don't have the resource file open when you change this and rebuild, otherwise the changes may not +// take effect within the version resource) +// Do not forget to define symbol "_DEBUG" for resource compiler if you use debug configuration (in VisualStudio you can +// find it under Project properties - Configuration properties - Resource - General - Preprocessor definitions) + +// plugin version part +#define __MAJOR_VERSION 0 +#define __MINOR_VERSION 0 +#define __RELEASE_NUM 1 +#define __BUILD_NUM 4 +// plugin SVN Revision number +#define __REV_NUM 1548 + +// minimal MirandaIM version number, with which this plugin supposed to work +#define __PROD_MAJOR_VERSION 0 +#define __PROD_MINOR_VERSION 8 +#define __PROD_RELEASE_NUM 0 +#define __PROD_BUILD_NUM 0 +// if your plugin works only with Miranda core beginning from specific revision, you can include this information in Product Version resource +//#define __PROD_REV_NUM 1234 + +// stuff that will be used in PluginInfo section and in Version resource +#define __PLUGIN_NAME "StopSpam+" +#define __FILENAME "StopSpam.dll" +#define __DESC "No more spam! Robots can't go! Only human beings invited!" +#define __AUTHOR "Roman Miklashevsky, A. Petkevich, Kosh&chka, persei" +#define __AUTHOREMAIL "koshechka@miranda.im" +#define __AUTHORWEB "http://nightly.miranda.im/" +#define __COPYRIGHT "© 2004-2010 Roman Miklashevsky, A. Petkevich, Kosh&chka, persei" + +// other stuff for Version resource +#define __STRINGIFY_IMPL(x) #x +#define __STRINGIFY(x) __STRINGIFY_IMPL(x) + +#define __FILEVERSION_STRING __MAJOR_VERSION,__MINOR_VERSION,__RELEASE_NUM,__BUILD_NUM +#define __FILEVERSION_STRING_DOTS __MAJOR_VERSION.__MINOR_VERSION.__RELEASE_NUM.__BUILD_NUM + +#ifdef __REV_NUM +#define __VERSION_STRING __STRINGIFY(__FILEVERSION_STRING_DOTS rev. __REV_NUM) +#else +#define __VERSION_STRING __STRINGIFY(__FILEVERSION_STRING_DOTS) +#endif + +#define __PRODVERSION_STRING __PROD_MAJOR_VERSION,__PROD_MINOR_VERSION,__PROD_RELEASE_NUM,__PROD_BUILD_NUM +#define __PRODVERSION_STRING_DOTS __PROD_MAJOR_VERSION.__PROD_MINOR_VERSION.__PROD_RELEASE_NUM.__PROD_BUILD_NUM +#ifdef __PROD_REV_NUM +#define __PROD_VERSION_STRING __STRINGIFY(__PRODVERSION_STRING_DOTS rev. __PROD_REV_NUM) +#else +#define __PROD_VERSION_STRING __STRINGIFY(__PRODVERSION_STRING_DOTS+) +#endif diff --git a/plugins/StopSpamPlus/stopspam_10.vcxproj b/plugins/StopSpamPlus/stopspam_10.vcxproj index 5b1d4d75fc..48a8b01d0c 100644 --- a/plugins/StopSpamPlus/stopspam_10.vcxproj +++ b/plugins/StopSpamPlus/stopspam_10.vcxproj @@ -74,7 +74,7 @@ Full OnlyExplicitInline ..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;STOPSPAM_EXPORTS;%(PreprocessorDefinitions) + WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) true true Level3 @@ -100,7 +100,7 @@ Full OnlyExplicitInline ..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - WIN64;NDEBUG;_WINDOWS;_USRDLL;STOPSPAM_EXPORTS;%(PreprocessorDefinitions) + WIN64;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) true true Level3 @@ -125,7 +125,7 @@ Disabled ..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;STOPSPAM_EXPORTS;%(PreprocessorDefinitions) + WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) true MultiThreadedDebugDLL Level3 @@ -148,7 +148,7 @@ Disabled ..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - WIN64;_DEBUG;_WINDOWS;_USRDLL;STOPSPAM_EXPORTS;%(PreprocessorDefinitions) + WIN64;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) MultiThreadedDebugDLL Level3 @@ -176,11 +176,11 @@ - - + + - + diff --git a/plugins/StopSpamPlus/stopspam_10.vcxproj.filters b/plugins/StopSpamPlus/stopspam_10.vcxproj.filters index e997e2959c..51bdd7ab12 100644 --- a/plugins/StopSpamPlus/stopspam_10.vcxproj.filters +++ b/plugins/StopSpamPlus/stopspam_10.vcxproj.filters @@ -44,16 +44,16 @@ Header Files - + Header Files - + Header Files - + Header Files - + Header Files diff --git a/plugins/StopSpamPlus/stopspamplus-translation.txt b/plugins/StopSpamPlus/stopspamplus-translation.txt deleted file mode 100644 index 50b195e9f2..0000000000 --- a/plugins/StopSpamPlus/stopspamplus-translation.txt +++ /dev/null @@ -1,33 +0,0 @@ -; Common strings that belong to many files -;[] - -; ../../plugins/StopSpamPlus/res/stopspam.rc -;[ questions to one contact (0 - for no limit)] -;[Add contact permanently] -;[Answer (Use divider to separate answers):] -;[Answer is not case sensitive] -;[Auth. request reply:] -;[Congratulation:] -;[Disable protection for following protocols:] -;[Divider:] -;[Do not send more than ] -;[Enable StopSpam-StopSpam infinite talk protection] -;[Enable auth. requests blocking] -;[Log Spammers to system history] -;[Question: (Ctrl-Enter for carriage return)] -;[Remove all tempory contacts after restart] -;[Restore defaults] -;[Vars] - -; ../../plugins/StopSpamPlus/src/events.cpp -;[Main] -;[Message Sessions] -;[Messages] -;[Protocols] - -; ../../plugins/StopSpamPlus/src/services.cpp -;[Complete] -;[Not In List] - -; ../../plugins/StopSpamPlus/src/settings.h -;[nospam] -- cgit v1.2.3