diff options
author | Sergey (Elzor) Bolhovskoy <elzor@foobar2000.ru> | 2010-07-19 22:30:21 +0600 |
---|---|---|
committer | Sergey (Elzor) Bolhovskoy <elzor@foobar2000.ru> | 2010-07-19 22:30:21 +0600 |
commit | 5e31bf278e243bdb21027e9eafbccb5b4e1f329e (patch) | |
tree | 26ff795214188cb8f126f19aad6cf0d05a0243e8 /utilities.h | |
parent | 562bcedfbf741cedd6731fc172eb033e15d2bb3b (diff) |
add spam message log, fixed remove contact from ICQ <Not In List> group
Diffstat (limited to 'utilities.h')
-rw-r--r-- | utilities.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/utilities.h b/utilities.h index ee56cc2..dd6bfe0 100644 --- a/utilities.h +++ b/utilities.h @@ -8,4 +8,12 @@ tstring variables_parse(tstring const &tstrFormat, HANDLE hContact); const int Stricmp(const TCHAR *str, const TCHAR *substr); //const int Stristr(const TCHAR *str, const TCHAR *substr); TCHAR* ReqGetText(DBEVENTINFO* dbei); -BOOL IsUrlContains(TCHAR * Str);
\ No newline at end of file +BOOL IsUrlContains(TCHAR * Str); +void DeleteCListGroupsByName(TCHAR* szGroupName); +tstring GetContactUid(HANDLE hContact, std::string Protocol); +void LogSpamToFile(HANDLE hContact, tstring message); +struct hContact_entry +{ + HANDLE hContact; + struct hContact_entry *next; +}; |