blob: b0d2b604110e606bcb6c1fc80867f24d120f9028 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef _XSN_UTILS_H
#define _XSN_UTILS_H
void initModuleConvertTable(ModuleConvertTable &table);
bool isReceiveMessage(LPARAM event);
std::tstring getContactSound(HANDLE contact);
ModuleString getContactModule(HANDLE contact);
std::tstring getIcqContactId(HANDLE contact, const ModuleString &module);
std::tstring getJabberContactId(HANDLE contact, const ModuleString &module);
#endif
|