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 BOOL
STDCALL STDCALL
GetDeviceGammaRamp( GetDeviceGammaRamp( HDC hdc,
HDC a0, LPVOID lpGammaRamp)
LPVOID a1
)
{ {
UNIMPLEMENTED; BOOL retValue = FALSE;
SetLastError(ERROR_CALL_NOT_IMPLEMENTED); if (lpGammaRamp == NULL)
return FALSE; {
SetLastError(ERROR_INVALID_PARAMETER);
}
else
{
retValue = NtGdiGetDeviceGammaRamp(hdc,lpGammaRamp);
}
return retValue;
} }
/* /*
* @unimplemented * @unimplemented
*/ */