Moved some VC++ specific hacks to platform header.

This commit is contained in:
Camilla Berglund 2014-03-06 21:05:55 +01:00
Родитель eb460c30ce
Коммит 76eefcc08a
4 изменённых файлов: 5 добавлений и 12 удалений

Просмотреть файл

@ -30,10 +30,6 @@
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>
#if defined(_MSC_VER)
#include <malloc.h>
#endif
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
////// GLFW internal API ////// ////// GLFW internal API //////

Просмотреть файл

@ -31,11 +31,6 @@
#include <stdlib.h> #include <stdlib.h>
#include <limits.h> #include <limits.h>
#if defined(_MSC_VER)
#include <malloc.h>
#define strdup _strdup
#endif
// Lexical comparison function for GLFW video modes, used by qsort // Lexical comparison function for GLFW video modes, used by qsort
// //

Просмотреть файл

@ -62,6 +62,11 @@
#define _WIN32_WINNT 0x0501 #define _WIN32_WINNT 0x0501
#endif #endif
#if defined(_MSC_VER)
#include <malloc.h>
#define strdup _strdup
#endif
#include <windows.h> #include <windows.h>
#include <mmsystem.h> #include <mmsystem.h>
#include <dbt.h> #include <dbt.h>

Просмотреть файл

@ -30,9 +30,6 @@
#include <string.h> #include <string.h>
#include <stdlib.h> #include <stdlib.h>
#if defined(_MSC_VER)
#include <malloc.h>
#endif
// Return the maxiumum of the specified values // Return the maxiumum of the specified values