diff options
author | George Hazan <george.hazan@gmail.com> | 2013-07-20 20:00:33 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-07-20 20:00:33 +0000 |
commit | 637f01aa0494d91269ddbd3180d7e2f440fbf599 (patch) | |
tree | cd83ffd3a3f88eef8d37ce6132c9b771c116eef6 /protocols/JabberG/src/jabber.h | |
parent | 4ad5767f652e0ffd3ebf7df8d8f62a682277faa1 (diff) |
system headers moved to jabber.h
git-svn-id: http://svn.miranda-ng.org/main/trunk@5432 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/JabberG/src/jabber.h')
-rw-r--r-- | protocols/JabberG/src/jabber.h | 83 |
1 files changed, 49 insertions, 34 deletions
diff --git a/protocols/JabberG/src/jabber.h b/protocols/JabberG/src/jabber.h index b5fac3160b..5085fa9807 100644 --- a/protocols/JabberG/src/jabber.h +++ b/protocols/JabberG/src/jabber.h @@ -45,49 +45,65 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #include <windows.h>
#include <commctrl.h>
#include <uxtheme.h>
+#include <richedit.h>
+#include <ctype.h>
+#include <fcntl.h>
+#include <io.h>
+#include <limits.h>
+#include <locale.h>
#include <malloc.h>
#include <process.h>
-#include <stdio.h>
#include <stdarg.h>
+#include <stdio.h>
#include <time.h>
-#include <limits.h>
-#include <ctype.h>
-#include <stdarg.h>
+#include <sys/types.h>
+#include <sys/stat.h>
#include <newpluginapi.h>
#include <m_system.h>
#include <m_system_cpp.h>
-#include <m_netlib.h>
-#include <m_protomod.h>
-#include <m_protosvc.h>
-#include <m_protoint.h>
+
+#include <m_avatars.h>
+#include <m_awaymsg.h>
+#include <m_button.h>
+#include <m_chat.h>
#include <m_clist.h>
-#include <m_clui.h>
-#include <m_options.h>
-#include <m_userinfo.h>
+#include <m_clistint.h>
+#include <m_cluiframes.h>
+#include <m_contacts.h>
#include <m_database.h>
+#include <m_extraicons.h>
+#include <m_file.h>
+#include <m_fontservice.h>
+#include <m_genmenu.h>
+#include <m_hotkeys.h>
+#include <m_icolib.h>
+#include <m_idle.h>
#include <m_langpack.h>
-#include <m_utils.h>
#include <m_message.h>
+#include <m_netlib.h>
+#include <m_options.h>
+#include <m_protomod.h>
+#include <m_protosvc.h>
+#include <m_protoint.h>
#include <m_skin.h>
-#include <m_chat.h>
-#include <m_icolib.h>
-#include <m_cluiframes.h>
-#include <m_clistint.h>
-#include <m_button.h>
-#include <m_avatars.h>
-#include <m_idle.h>
-#include <m_file.h>
#include <m_timezones.h>
-#include <m_jabber.h>
-#include <m_fingerprint.h>
-#include <m_popup.h>
-#include <m_folders.h>
+#include <m_toptoolbar.h>
+#include <m_userinfo.h>
+#include <m_utils.h>
#include <m_xstatus.h>
-#include <m_extraicons.h>
#include <win2k.h>
+#include <m_addcontact.h>
+#include <m_folders.h>
+#include <m_fingerprint.h>
+#include <m_jabber.h>
+#include <m_modernopt.h>
+#include <m_popup.h>
+#include <m_proto_listeningto.h>
+#include <m_skin_eng.h>
+
#include "../../plugins/zlib/src/zlib.h"
#include "resource.h"
@@ -400,10 +416,10 @@ struct JABBER_REG_ACCOUNT {
TCHAR username[512];
TCHAR password[512];
- char server[128];
- char manualHost[128];
- WORD port;
- BOOL useSSL;
+ char server[128];
+ char manualHost[128];
+ WORD port;
+ BOOL useSSL;
};
typedef enum { FT_SI, FT_OOB, FT_BYTESTREAM, FT_IBB } JABBER_FT_TYPE;
@@ -420,7 +436,6 @@ struct filetransfer PROTOFILETRANSFERSTATUS std;
-// HANDLE hContact;
JABBER_FT_TYPE type;
JABBER_SOCKET s;
JABBER_FILE_STATE state;
@@ -646,9 +661,9 @@ HANDLE g_GetIconHandle(int iconId); HICON g_LoadIconEx(const char* name, bool big = false);
void g_ReleaseIcon(HICON hIcon);
-void ImageList_AddIcon_Icolib(HIMAGELIST hIml, HICON hIcon);
-void WindowSetIcon(HWND hWnd, CJabberProto *proto, const char* name);
-void WindowFreeIcon(HWND hWnd);
+void ImageList_AddIcon_Icolib(HIMAGELIST hIml, HICON hIcon);
+void WindowSetIcon(HWND hWnd, CJabberProto *proto, const char* name);
+void WindowFreeIcon(HWND hWnd);
int ReloadIconsEventHook(WPARAM wParam, LPARAM lParam);
@@ -676,7 +691,7 @@ struct CJabberAdhocStartupParams {
TCHAR *m_szJid;
TCHAR *m_szNode;
- CJabberProto* m_pProto;
+ CJabberProto *m_pProto;
CJabberAdhocStartupParams(CJabberProto* proto, TCHAR* szJid, TCHAR* szNode = NULL)
{
|