mirror of
https://github.com/reactos/reactos.git
synced 2025-08-04 02:45:41 +00:00
[wingdi.h]
- merge one last header change from the themes branch svn path=/trunk/; revision=53737
This commit is contained in:
parent
ba2b3c872a
commit
384a6e4299
2 changed files with 3 additions and 2 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
|
@ -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))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue