summaryrefslogtreecommitdiff
path: root/plugins/StopSpamPlus/src
diff options
context:
space:
mode:
authorKirill Volinsky <mataes2007@gmail.com>2015-08-01 18:59:39 +0000
committerKirill Volinsky <mataes2007@gmail.com>2015-08-01 18:59:39 +0000
commitc1d55f386dda0203be456f8188070d0397711e32 (patch)
tree289772bb5bb418010163ea3988854188c2e789f4 /plugins/StopSpamPlus/src
parent1e2b37b3408c3b732e221aadbf92edc13a77005b (diff)
stopspam: common project
git-svn-id: http://svn.miranda-ng.org/main/trunk@14786 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/StopSpamPlus/src')
-rw-r--r--plugins/StopSpamPlus/src/eventhooker.cpp2
-rw-r--r--plugins/StopSpamPlus/src/events.cpp2
-rw-r--r--plugins/StopSpamPlus/src/opt_proto.cpp2
-rw-r--r--plugins/StopSpamPlus/src/options.cpp2
-rw-r--r--plugins/StopSpamPlus/src/services.cpp2
-rw-r--r--plugins/StopSpamPlus/src/settings.cpp2
-rw-r--r--plugins/StopSpamPlus/src/stdafx.cxx (renamed from plugins/StopSpamPlus/src/stdafx.cpp)2
-rw-r--r--plugins/StopSpamPlus/src/stdafx.h (renamed from plugins/StopSpamPlus/src/headers.h)0
-rw-r--r--plugins/StopSpamPlus/src/stopspam.cpp2
-rw-r--r--plugins/StopSpamPlus/src/utils.cpp2
10 files changed, 9 insertions, 9 deletions
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/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.cxx
index 7e0216078c..6fb37564b7 100644
--- a/plugins/StopSpamPlus/src/stdafx.cpp
+++ b/plugins/StopSpamPlus/src/stdafx.cxx
@@ -15,4 +15,4 @@ You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include "headers.h" \ No newline at end of file
+#include "stdafx.h" \ No newline at end of file
diff --git a/plugins/StopSpamPlus/src/headers.h b/plugins/StopSpamPlus/src/stdafx.h
index 1b2ac5b2e1..1b2ac5b2e1 100644
--- a/plugins/StopSpamPlus/src/headers.h
+++ b/plugins/StopSpamPlus/src/stdafx.h
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)
{