From fec0bf98d058f3838a569867a666273de26b12b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herv=C3=A9=20Poussineau?= Date: Sat, 24 Jun 2006 18:26:28 +0000 Subject: [PATCH] Fix definition of NtGdiAlphaBlend svn path=/trunk/; revision=22580 --- reactos/include/ntgdi.h | 3 +-- reactos/subsystems/win32/win32k/objects/bitmaps.c | 5 ++--- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/reactos/include/ntgdi.h b/reactos/include/ntgdi.h index 9fe7a42be2e..2bdcc340901 100644 --- a/reactos/include/ntgdi.h +++ b/reactos/include/ntgdi.h @@ -1097,8 +1097,7 @@ NtGdiAlphaBlend( IN LONG SrcY, IN LONG SrcCx, IN LONG SrcCy, - IN BLENDFUNCTION BlendFunction, - IN HANDLE hcmXform + IN BLENDFUNCTION BlendFunction ); W32KAPI diff --git a/reactos/subsystems/win32/win32k/objects/bitmaps.c b/reactos/subsystems/win32/win32k/objects/bitmaps.c index e39e1f6d0b5..678400b88b9 100644 --- a/reactos/subsystems/win32/win32k/objects/bitmaps.c +++ b/reactos/subsystems/win32/win32k/objects/bitmaps.c @@ -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)