From 18ebc095c1d10dcfbc6cd5b48a231ecc547a1c16 Mon Sep 17 00:00:00 2001 From: Royce Mitchell III Date: Tue, 12 Aug 2003 21:08:14 +0000 Subject: [PATCH] fixed build error svn path=/trunk/; revision=5546 --- reactos/subsys/win32k/stubs/xpstubs.c | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/reactos/subsys/win32k/stubs/xpstubs.c b/reactos/subsys/win32k/stubs/xpstubs.c index e40ac58b215..af2753b2e70 100644 --- a/reactos/subsys/win32k/stubs/xpstubs.c +++ b/reactos/subsys/win32k/stubs/xpstubs.c @@ -3,11 +3,20 @@ * in Windows XP and beyond ( i.e. a low priority for us right now ) */ +#undef WIN32_LEAN_AND_MEAN #include -#include +#include +#include +#include +#include +#include +#include "../eng/objects.h" +#include #define STUB(x) void x(void) { DbgPrint("WIN32K: Stub for %s\n", #x); } +typedef PVOID EVENT, *PEVENT; + BOOL STDCALL EngCreateEvent ( OUT PEVENT *ppEvent )