[wingdi.h]

- merge one last header change from the themes branch

svn path=/trunk/; revision=53737
This commit is contained in:
Giannis Adamopoulos 2011-09-18 16:51:28 +00:00
parent ba2b3c872a
commit 384a6e4299
2 changed files with 3 additions and 2 deletions

View file

@ -1622,11 +1622,11 @@ GdiTransparentBlt(IN HDC hdcDst,
IN INT ySrc,
IN INT cxSrc,
IN INT cySrc,
IN COLORREF TransColor
IN UINT TransColor
)
{
/* FIXME some part need be done in user mode */
return NtGdiTransparentBlt(hdcDst, xDst, yDst, cxDst, cyDst, hdcSrc, xSrc, ySrc, cxSrc, cySrc, TransColor);
return NtGdiTransparentBlt(hdcDst, xDst, yDst, cxDst, cyDst, hdcSrc, xSrc, ySrc, cxSrc, cySrc, (COLORREF)TransColor);
}
/*

View file

@ -2995,6 +2995,7 @@ DWORD WINAPI GdiGetCodePage(HDC);
DWORD WINAPI GdiGetBatchLimit(void);
DWORD WINAPI GdiSetBatchLimit(DWORD);
BOOL WINAPI GdiGradientFill(HDC,PTRIVERTEX,ULONG,PVOID,ULONG,ULONG);
BOOL WINAPI GdiTransparentBlt(HDC,int,int,int,int,HDC,int,int,int,int,UINT);
BOOL WINAPI GdiIsMetaFileDC(HDC);
#define GetCValue(cmyk) ((BYTE)(cmyk))
#define GetMValue(cmyk) ((BYTE)((cmyk)>> 8))