Skip to content

Commit e573e85

Browse files
committed
[gdi32]
-fix build svn path=/branches/GSoC_2011/ThemesSupport/; revision=53318
1 parent db6d908 commit e573e85

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dll/win32/gdi32/misc/stubs.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1622,11 +1622,11 @@ GdiTransparentBlt(IN HDC hdcDst,
16221622
IN INT ySrc,
16231623
IN INT cxSrc,
16241624
IN INT cySrc,
1625-
IN COLORREF TransColor
1625+
IN UINT TransColor
16261626
)
16271627
{
16281628
/* FIXME some part need be done in user mode */
1629-
return NtGdiTransparentBlt(hdcDst, xDst, yDst, cxDst, cyDst, hdcSrc, xSrc, ySrc, cxSrc, cySrc, TransColor);
1629+
return NtGdiTransparentBlt(hdcDst, xDst, yDst, cxDst, cyDst, hdcSrc, xSrc, ySrc, cxSrc, cySrc, (COLORREF)TransColor);
16301630
}
16311631

16321632
/*

0 commit comments

Comments
 (0)