https://git.reactos.org/?p=reactos.git;a=commitdiff;h=fa548efb41f26da24d4ec7...
commit fa548efb41f26da24d4ec7afc2209a5ef8a5edc1 Author: Mark Jansen mark.jansen@reactos.org AuthorDate: Sat Feb 23 16:24:21 2019 +0100 Commit: Mark Jansen mark.jansen@reactos.org CommitDate: Mon Feb 25 20:00:35 2019 +0100
[XDK] Remove _M_AMD64 special case --- modules/rostests/apitests/apphelp/register.cpp | 2 +- sdk/include/xdk/ntbasedef.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/modules/rostests/apitests/apphelp/register.cpp b/modules/rostests/apitests/apphelp/register.cpp index fb093cc594..146dc8cf37 100644 --- a/modules/rostests/apitests/apphelp/register.cpp +++ b/modules/rostests/apitests/apphelp/register.cpp @@ -7,7 +7,7 @@
#include <ntstatus.h> #define WIN32_NO_STATUS -#include <windows.h> +#include <windef.h> #include <ntndk.h> #include <atlbase.h> #include <strsafe.h> diff --git a/sdk/include/xdk/ntbasedef.h b/sdk/include/xdk/ntbasedef.h index 67ddadcfcf..a40ee83e57 100644 --- a/sdk/include/xdk/ntbasedef.h +++ b/sdk/include/xdk/ntbasedef.h @@ -343,7 +343,7 @@ typedef void *HANDLE, **PHANDLE; typedef char CHAR; typedef short SHORT;
- #if defined(__ROS_LONG64__) && !defined(_M_AMD64) + #if defined(__ROS_LONG64__) typedef int LONG; #else typedef long LONG;