blob: 5c2a519c7c74ed1e3f5600b01bb42ea7ea3c27c1 (
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);
xsn_string getContactSound(HANDLE contact);
ModuleString getContactModule(HANDLE contact);
xsn_string getIcqContactId(HANDLE contact, const ModuleString & module);
xsn_string getJabberContactId(HANDLE contact, const ModuleString & module);
#endif
|