blob: 66bdef25268153a5be9803130f7b577e51646393 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef _XSN_UTILS_H
#define _XSN_UTILS_H
#include "xsn_types.h"
#include "SoundNotifyData.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
|