implement GetDeviceGammaRamp

svn path=/trunk/; revision=28689
This commit is contained in:
Magnus Olsen 2007-08-30 22:20:16 +00:00
parent 4fd8100175
commit 2c1780806e

View file

@ -831,21 +831,31 @@ SetColorSpace(
}
/*
* @unimplemented
* @implemented
*/
BOOL
STDCALL
GetDeviceGammaRamp(
HDC a0,
LPVOID a1
)
GetDeviceGammaRamp( HDC hdc,
LPVOID lpGammaRamp)
{
UNIMPLEMENTED;
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return FALSE;
BOOL retValue = FALSE;
if (lpGammaRamp == NULL)
{
SetLastError(ERROR_INVALID_PARAMETER);
}
else
{
retValue = NtGdiGetDeviceGammaRamp(hdc,lpGammaRamp);
}
return retValue;
}
/*
* @unimplemented
*/