Author: tfaber Date: Mon Jul 25 19:28:40 2016 New Revision: 71998
URL: http://svn.reactos.org/svn/reactos?rev=71998&view=rev Log: [TOOLS] - Fix MSVC 2013+ build. Patch by Victor Matovykh. CORE-11575 #resolve
Modified: trunk/reactos/sdk/include/host/typedefs.h
Modified: trunk/reactos/sdk/include/host/typedefs.h URL: http://svn.reactos.org/svn/reactos/trunk/reactos/sdk/include/host/typedefs.h... ============================================================================== --- trunk/reactos/sdk/include/host/typedefs.h [iso-8859-1] (original) +++ trunk/reactos/sdk/include/host/typedefs.h [iso-8859-1] Mon Jul 25 19:28:40 2016 @@ -13,20 +13,7 @@ #include <assert.h> #include <stdlib.h> #include <limits.h> - -#ifndef _MSC_VER #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)