From 7b67bd00c404a55080f8d43c80e700e449e7b59e Mon Sep 17 00:00:00 2001 From: Pierre Schweitzer Date: Tue, 30 May 2017 22:01:13 +0000 Subject: [PATCH] [NTDLL_VISTA] Fix GCC build after r74706. Patch by Thomas svn path=/trunk/; revision=74707 --- reactos/dll/win32/ntdll_vista/CMakeLists.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/reactos/dll/win32/ntdll_vista/CMakeLists.txt b/reactos/dll/win32/ntdll_vista/CMakeLists.txt index 6557a5154e7..7f235ad578b 100644 --- a/reactos/dll/win32/ntdll_vista/CMakeLists.txt +++ b/reactos/dll/win32/ntdll_vista/CMakeLists.txt @@ -1,6 +1,9 @@ remove_definitions(-D_WIN32_WINNT=0x502 -DWINVER=0x502) -add_definitions(-D_WIN32_WINNT=0x600 -DWINVER=0x600) +add_definitions(-D_WIN32_WINNT=0x600 -DWINVER=0x600 + -D__NTDLL__ + -D_NTOSKRNL_ + -D_NTSYSTEM_) spec2def(ntdll_vista.dll ntdll_vista.spec ADD_IMPORTLIB)