mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
fixed build error
svn path=/trunk/; revision=5546
This commit is contained in:
parent
eef42bcfe5
commit
18ebc095c1
1 changed files with 10 additions and 1 deletions
|
@ -3,11 +3,20 @@
|
||||||
* in Windows XP and beyond ( i.e. a low priority for us right now )
|
* in Windows XP and beyond ( i.e. a low priority for us right now )
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#undef WIN32_LEAN_AND_MEAN
|
||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
#include <ddk/ntddk.h>
|
#include <stdlib.h>
|
||||||
|
#include <win32k/bitmaps.h>
|
||||||
|
#include <win32k/debug.h>
|
||||||
|
#include <debug.h>
|
||||||
|
#include <ddk/winddi.h>
|
||||||
|
#include "../eng/objects.h"
|
||||||
|
#include <include/error.h>
|
||||||
|
|
||||||
#define STUB(x) void x(void) { DbgPrint("WIN32K: Stub for %s\n", #x); }
|
#define STUB(x) void x(void) { DbgPrint("WIN32K: Stub for %s\n", #x); }
|
||||||
|
|
||||||
|
typedef PVOID EVENT, *PEVENT;
|
||||||
|
|
||||||
BOOL
|
BOOL
|
||||||
STDCALL
|
STDCALL
|
||||||
EngCreateEvent ( OUT PEVENT *ppEvent )
|
EngCreateEvent ( OUT PEVENT *ppEvent )
|
||||||
|
|
Loading…
Reference in a new issue