diff options
Diffstat (limited to 'utilities.h')
-rw-r--r-- | utilities.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/utilities.h b/utilities.h index 58374c8..0325f51 100644 --- a/utilities.h +++ b/utilities.h @@ -1,4 +1,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 |