diff options
Diffstat (limited to 'plugins/stopspam_mod/src/globals.h')
-rwxr-xr-x | plugins/stopspam_mod/src/globals.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/plugins/stopspam_mod/src/globals.h b/plugins/stopspam_mod/src/globals.h new file mode 100755 index 0000000000..790458e6bc --- /dev/null +++ b/plugins/stopspam_mod/src/globals.h @@ -0,0 +1,20 @@ +#define pluginName "StopSpam" //const char* ?
+/*
+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
+
|