diff options
author | Gluzskiy Alexandr <sss123next@list.ru> | 2009-10-13 04:45:36 +0300 |
---|---|---|
committer | Gluzskiy Alexandr <sss123next@list.ru> | 2009-10-13 04:45:36 +0300 |
commit | 35fbf19ce0da051b1bf471ac81048440908f0eaa (patch) | |
tree | 1684fe12e9aa833638de737f215b3b290653a929 /stopspam_mod/globals.h | |
parent | 44cf244bab4c4cba771313bf3151a655775c0e0a (diff) |
code sorting, stopspam_mod branch created
Diffstat (limited to 'stopspam_mod/globals.h')
-rw-r--r-- | stopspam_mod/globals.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/stopspam_mod/globals.h b/stopspam_mod/globals.h new file mode 100644 index 0000000..9ae64b3 --- /dev/null +++ b/stopspam_mod/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
+
|