diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2013-09-16 13:47:55 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2013-09-16 13:47:55 +0000 |
commit | 25b8dcd3e31a9b09ce6180d34273d68242791d79 (patch) | |
tree | 7070e154406e1ca15577dea410fc7a4c076c22df /protocols/Gadu-Gadu/src | |
parent | b80e5c3c33cff078b6e01ef79fd83bb176d6d00a (diff) |
removed not needed _MSC_VER checks
git-svn-id: http://svn.miranda-ng.org/main/trunk@6085 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Gadu-Gadu/src')
-rw-r--r-- | protocols/Gadu-Gadu/src/gg.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/protocols/Gadu-Gadu/src/gg.h b/protocols/Gadu-Gadu/src/gg.h index 0fb853d5d5..8c77df9033 100644 --- a/protocols/Gadu-Gadu/src/gg.h +++ b/protocols/Gadu-Gadu/src/gg.h @@ -37,11 +37,7 @@ // Windows headers
// Visual C++ .NET tries to include winsock.h
// which is very ver bad
-#if (_MSC_VER >= 1300)
#include <winsock2.h>
-#else
-#include <windows.h>
-#endif
#include <commctrl.h>
#include <commdlg.h>
@@ -85,11 +81,7 @@ #include "m_folders.h"
// Visual C++ extras
-#ifdef _MSC_VER
#define GGINLINE
-#else
-#define GGINLINE inline
-#endif
// Plugin headers
#include "resource.h"
@@ -300,14 +292,12 @@ struct GGGETAVATARDATA #define GG_POPUP_MULTILOGON 16
// Some MSVC compatibility with gcc
-#ifdef _MSC_VER
#ifndef strcasecmp
#define strcasecmp _strcmpi
#endif
#ifndef strncasecmp
#define strncasecmp _strnicmp
#endif
-#endif
// Global variables
/////////////////////////////////////////////////
|