From 714d0d6737b323366d7793c93f7d3e65f46346ea Mon Sep 17 00:00:00 2001 From: Aleksey Bragin Date: Tue, 4 Dec 2007 19:22:33 +0000 Subject: [PATCH] - Fix _enable/_disable intrinsics when compiling with WDK 6001. svn path=/trunk/; revision=31006 --- reactos/include/ndk/halfuncs.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/reactos/include/ndk/halfuncs.h b/reactos/include/ndk/halfuncs.h index 23ff47e993a..a20b1d1c2f9 100644 --- a/reactos/include/ndk/halfuncs.h +++ b/reactos/include/ndk/halfuncs.h @@ -55,6 +55,8 @@ Author: // The DDK steals these away from you. // #ifdef _MSC_VER +void __cdecl _enable(void); +void __cdecl _disable(void); #pragma intrinsic(_enable) #pragma intrinsic(_disable) #endif