From 5653b80ea7b4ff984e1c71d6e3d7cc755c5ab7f8 Mon Sep 17 00:00:00 2001 From: Magnus Olsen Date: Sun, 20 Apr 2008 14:46:03 +0000 Subject: [PATCH] Let DxEngScreenAccessCheck() always return true for now until we implemete it it mean dxg.sys have preemptions to access the screen. svn path=/trunk/; revision=33060 --- reactos/subsystems/win32/win32k/ntddraw/dxeng.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/reactos/subsystems/win32/win32k/ntddraw/dxeng.c b/reactos/subsystems/win32/win32k/ntddraw/dxeng.c index de38b16554f..01539a3ce7c 100644 --- a/reactos/subsystems/win32/win32k/ntddraw/dxeng.c +++ b/reactos/subsystems/win32/win32k/ntddraw/dxeng.c @@ -656,7 +656,9 @@ DWORD DxEngCreateMemoryDC(DWORD x1) DWORD DxEngScreenAccessCheck() { UNIMPLEMENTED; - return FALSE; + + /* we cheating here and tell dxg.sys it have always premitions to access the screen */ + return TRUE; } /************************************************************************/