summaryrefslogtreecommitdiff
path: root/utilities.h
blob: 0325f5174f68c2004d08c3f3a3d79e5cb4cdc120 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef UTILITIES_H
#define UTILITIES_H
TCHAR* __stdcall UniGetContactSettingUtf(HANDLE hContact, const char *szModule,const char* szSetting, TCHAR* szDef);
class JabberAccount {
public:
	JabberAccount();
	~JabberAccount();
	TCHAR *AccountName;
	int AccountNumber;
	IJabberInterface *JabberInterface;
	class JabberAccount *next;	
	BOOL operator !();
};

#endif