[TOOLS]
authorThomas Faber <thomas.faber@reactos.org>
Mon, 25 Jul 2016 19:28:40 +0000 (19:28 +0000)
committerThomas Faber <thomas.faber@reactos.org>
Mon, 25 Jul 2016 19:28:40 +0000 (19:28 +0000)
- Fix MSVC 2013+ build. Patch by Victor Matovykh.
CORE-11575 #resolve

svn path=/trunk/; revision=71998

reactos/sdk/include/host/typedefs.h

index 48dabf1..5ccdbff 100644 (file)
 #include <assert.h>
 #include <stdlib.h>
 #include <limits.h>
 #include <assert.h>
 #include <stdlib.h>
 #include <limits.h>
-
-#ifndef _MSC_VER
 #include <stdint.h>
 #include <stdint.h>
-#else
-typedef __int8  int8_t;
-typedef __int16 int16_t;
-typedef __int32 int32_t;
-typedef __int64 int64_t;
-
-typedef unsigned __int8  uint8_t;
-typedef unsigned __int16 uint16_t;
-typedef unsigned __int32 uint32_t;
-typedef unsigned __int64 uint64_t;
-#endif
 
 /* Function attributes for GCC */
 #if !defined(_MSC_VER) && !defined(__fastcall)
 
 /* Function attributes for GCC */
 #if !defined(_MSC_VER) && !defined(__fastcall)