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 SrcCx,
IN LONG SrcCy,
IN BLENDFUNCTION BlendFunction,
IN HANDLE hcmXform
IN BLENDFUNCTION BlendFunction
);
W32KAPI

View file

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