Author: greatlrd
Date: Mon Oct 15 17:10:59 2007
New Revision: 29601
URL: 
http://svn.reactos.org/svn/reactos?rev=29601&view=rev
Log:
adding one more api to dxeng.c
Modified:
    branches/reactx/reactos/subsystems/win32/win32k/ntddraw/dxeng.c
Modified: branches/reactx/reactos/subsystems/win32/win32k/ntddraw/dxeng.c
URL:
http://svn.reactos.org/svn/reactos/branches/reactx/reactos/subsystems/win32…
==============================================================================
--- branches/reactx/reactos/subsystems/win32/win32k/ntddraw/dxeng.c (original)
+++ branches/reactx/reactos/subsystems/win32/win32k/ntddraw/dxeng.c Mon Oct 15 17:10:59
2007
@@ -64,7 +64,7 @@
 }
 /************************************************************************/
-/* Enumate all drivers in win32k                                        */
+/* DxEngEnumerateHdev                                                   */
 /************************************************************************/
 /* Enumate all drivers in win32k */
 HDEV *
@@ -75,4 +75,18 @@
     return 0;
 }
+/************************************************************************/
+/* DxEngGetDeviceGammaRamp                                              */
+/************************************************************************/
+/* same protypes NtGdiEngGetDeviceGammaRamp, diffent is we skipp the user mode checks and
seh */
+BOOL
+DxEngGetDeviceGammaRamp(HDC hDC, LPVOID lpRamp)
+{
+    /* FIXME redirect it to NtGdiEngGetDeviceGammaRamp internal call  */
+    DPRINT1("redirect it to NtGdiEngGetDeviceGammaRamp internal call ");
+    return FALSE;
+}
+
+
+