diff options
author | George Hazan <george.hazan@gmail.com> | 2013-05-16 13:55:38 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-05-16 13:55:38 +0000 |
commit | 57e1faf818b58378d83f6b583d4f048d3dd5a4d9 (patch) | |
tree | e1beeb9ca96455ece13005c26e5e4e8bda2dce90 /protocols/JabberG | |
parent | 0ab8d461ef00c1b47d56c6f270673a44246f0c0a (diff) |
we don't need VS2003/2005 support as well
git-svn-id: http://svn.miranda-ng.org/main/trunk@4673 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/JabberG')
-rw-r--r-- | protocols/JabberG/src/jabber.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/protocols/JabberG/src/jabber.h b/protocols/JabberG/src/jabber.h index b999103128..c0074cda96 100644 --- a/protocols/JabberG/src/jabber.h +++ b/protocols/JabberG/src/jabber.h @@ -31,8 +31,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #define MIRANDA_VER 0x0A00
-#include "m_stdhdr.h"
-
#define LISTFOREACH(var__, obj__, list__) \
for (int var__ = 0; (var__ = obj__->ListFindNext(list__, var__)) >= 0; ++var__)
#define LISTFOREACH_NODEF(var__, obj__, list__) \
@@ -43,9 +41,12 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *******************************************************************/
#define _WIN32_WINNT 0x501
#define _WIN32_IE 0x501
+
#include <windows.h>
#include <commctrl.h>
#include <uxtheme.h>
+
+#include <malloc.h>
#include <process.h>
#include <stdio.h>
#include <stdarg.h>
@@ -53,6 +54,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #include <limits.h>
#include <ctype.h>
#include <stdarg.h>
+
#include <newpluginapi.h>
#include <m_system.h>
#include <m_system_cpp.h>
|