diff --git a/reactos/subsystems/win32/win32k/ntddraw/dxeng.c b/reactos/subsystems/win32/win32k/ntddraw/dxeng.c index 06bdcffb78a..29b0a5e49ca 100644 --- a/reactos/subsystems/win32/win32k/ntddraw/dxeng.c +++ b/reactos/subsystems/win32/win32k/ntddraw/dxeng.c @@ -64,7 +64,7 @@ DxEngVisRgnUniq() } /************************************************************************/ -/* Enumate all drivers in win32k */ +/* DxEngEnumerateHdev */ /************************************************************************/ /* Enumate all drivers in win32k */ HDEV * @@ -75,4 +75,18 @@ DxEngEnumerateHdev(HDEV *hdev); 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; +} + + +