adding one more api to dxeng.c

svn path=/branches/reactx/; revision=29601
This commit is contained in:
Magnus Olsen 2007-10-15 13:10:59 +00:00
parent 1a146fe5ca
commit ed47fc3520

View file

@ -64,7 +64,7 @@ DxEngVisRgnUniq()
} }
/************************************************************************/ /************************************************************************/
/* Enumate all drivers in win32k */ /* DxEngEnumerateHdev */
/************************************************************************/ /************************************************************************/
/* Enumate all drivers in win32k */ /* Enumate all drivers in win32k */
HDEV * HDEV *
@ -75,4 +75,18 @@ DxEngEnumerateHdev(HDEV *hdev);
return 0; 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;
}