Fix definition of NtGdiAlphaBlend

svn path=/trunk/; revision=22580
This commit is contained in:
Hervé Poussineau 2006-06-24 18:26:28 +00:00
parent 5940727077
commit fec0bf98d0
2 changed files with 3 additions and 5 deletions

View file

@ -1097,8 +1097,7 @@ NtGdiAlphaBlend(
IN LONG SrcY, IN LONG SrcY,
IN LONG SrcCx, IN LONG SrcCx,
IN LONG SrcCy, IN LONG SrcCy,
IN BLENDFUNCTION BlendFunction, IN BLENDFUNCTION BlendFunction
IN HANDLE hcmXform
); );
W32KAPI W32KAPI

View file

@ -1341,8 +1341,7 @@ NtGdiAlphaBlend(
LONG YOriginSrc, LONG YOriginSrc,
LONG WidthSrc, LONG WidthSrc,
LONG HeightSrc, LONG HeightSrc,
BLENDFUNCTION BlendFunc, BLENDFUNCTION BlendFunc)
IN HANDLE hcmXform)
{ {
PDC DCDest = NULL; PDC DCDest = NULL;
PDC DCSrc = NULL; PDC DCSrc = NULL;
@ -1352,7 +1351,7 @@ NtGdiAlphaBlend(
XLATEOBJ *XlateObj; XLATEOBJ *XlateObj;
BLENDOBJ BlendObj; BLENDOBJ BlendObj;
HPALETTE SourcePalette = 0, DestPalette = 0; HPALETTE SourcePalette = 0, DestPalette = 0;
BlendObj.BlendFunction = BlendFunc; BlendObj.BlendFunction = BlendFunc;
DCDest = DC_LockDc(hDCDest); DCDest = DC_LockDc(hDCDest);
if (NULL == DCDest) if (NULL == DCDest)