Add a temporary local copy of stdint.h for VS2008.

This commit is contained in:
Daniel Buckmaster 2015-02-22 11:13:14 +11:00
parent e9a0975208
commit bddc27c693
2 changed files with 260 additions and 5 deletions

View file

@ -24,11 +24,7 @@
#define _TORQUE_TYPES_H_
#if (defined _MSC_VER) && (_MSC_VER <= 1500)
#ifdef _WIN64 // [
typedef unsigned __int64 uintptr_t;
#else // _WIN64 ][
typedef _W64 unsigned int uintptr_t;
#endif // _WIN64 ]
#include "platformWin32/stdint.h"
#else
#include <stdint.h>
#endif