summaryrefslogtreecommitdiff
path: root/globals.h
diff options
context:
space:
mode:
authorGluzskiy Alexandr <sss123next@gmail.com>2010-02-15 05:49:53 +0300
committerGluzskiy Alexandr <sss123next@gmail.com>2010-02-15 05:49:53 +0300
commita5f8c514a5d7da4cd7049d2439182f51d7c1c195 (patch)
tree5d61bd603f94277e30e88e8cb13dbb917087436a /globals.h
parent0e3db0eb1dfe2cb30a14f0198fb5aa22f00a4b26 (diff)
sort
Diffstat (limited to 'globals.h')
-rw-r--r--globals.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/globals.h b/globals.h
new file mode 100644
index 0000000..9ae64b3
--- /dev/null
+++ b/globals.h
@@ -0,0 +1,20 @@
+#define pluginName "StopSpam"
+/*
+TCHAR const * defAnswer = _T("nospam");
+TCHAR const * defCongratulation =
+_T("Congratulations! You just passed human/robot test. Now you can write me a message.");
+char const * defProtoList = "ICQ\r\n";
+TCHAR const * infTalkProtPrefix = _T("StopSpam automatic message:\r\n");
+char const * answeredSetting = "Answered";
+char const * questCountSetting = "QuestionCount";
+TCHAR const * defAufrepl = _T("StopSpam: send a message and reply to a anti-spam bot question.");*/
+
+
+#ifdef _UNICODE
+typedef std::wstring tstring;
+#define PREF_TCHAR2 PREF_UTF
+#else
+typedef std::string tstring;
+#define PREF_TCHAR2 0
+#endif //_UNICODE
+