Author: tkreuzer Date: Wed Apr 1 08:35:16 2015 New Revision: 67004
URL: http://svn.reactos.org/svn/reactos?rev=67004&view=rev Log: [HOST] Make sure host-tools hosts get the correct type definitions on 64 bit (native) MSVC builds. x64 builds boot to desktop now. CORE-8587 #resolve
Modified: trunk/reactos/include/host/typedefs.h
Modified: trunk/reactos/include/host/typedefs.h URL: http://svn.reactos.org/svn/reactos/trunk/reactos/include/host/typedefs.h?rev... ============================================================================== --- trunk/reactos/include/host/typedefs.h [iso-8859-1] (original) +++ trunk/reactos/include/host/typedefs.h [iso-8859-1] Wed Apr 1 08:35:16 2015 @@ -69,7 +69,7 @@ typedef const uint16_t *PCWSTR, *LPCWSTR; typedef int32_t INT, LONG, *PLONG, *LPLONG, BOOL, WINBOOL; typedef uint32_t UINT, *PUINT, *LPUINT, ULONG, *PULONG, DWORD, *PDWORD, *LPDWORD, UINT32; -#ifdef _LP64 +#if defined(_LP64) || defined(_WIN64) typedef int64_t LONG_PTR, *PLONG_PTR, INT_PTR, *PINT_PTR; typedef uint64_t ULONG_PTR, DWORD_PTR, *PULONG_PTR, UINT_PTR, *PUINT_PTR; #else