Author: greatlrd
Date: Sun Apr 20 09:46:03 2008
New Revision: 33060
URL:
http://svn.reactos.org/svn/reactos?rev=33060&view=rev
Log:
Let DxEngScreenAccessCheck() always return true for now until we implemete it
it mean dxg.sys have preemptions to access the screen.
Modified:
trunk/reactos/subsystems/win32/win32k/ntddraw/dxeng.c
Modified: trunk/reactos/subsystems/win32/win32k/ntddraw/dxeng.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/subsystems/win32/win32k/nt…
==============================================================================
--- trunk/reactos/subsystems/win32/win32k/ntddraw/dxeng.c [iso-8859-1] (original)
+++ trunk/reactos/subsystems/win32/win32k/ntddraw/dxeng.c [iso-8859-1] Sun Apr 20 09:46:03
2008
@@ -656,7 +656,9 @@
DWORD DxEngScreenAccessCheck()
{
UNIMPLEMENTED;
- return FALSE;
+
+ /* we cheating here and tell dxg.sys it have always premitions to access the screen
*/
+ return TRUE;
}
/************************************************************************/