mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 09:34:43 +00:00
Add NtGdiAlphaBlend prototype.
svn path=/trunk/; revision=18895
This commit is contained in:
parent
fc8df70d3c
commit
963b76516c
1 changed files with 15 additions and 0 deletions
|
@ -53,6 +53,21 @@ HBITMAP FASTCALL BitmapToSurf(PBITMAPOBJ BitmapObj, HDEV GDIDevice);
|
||||||
HBITMAP FASTCALL IntCreateCompatibleBitmap(PDC Dc, INT Width, INT Height);
|
HBITMAP FASTCALL IntCreateCompatibleBitmap(PDC Dc, INT Width, INT Height);
|
||||||
|
|
||||||
/* User Entry Points */
|
/* User Entry Points */
|
||||||
|
BOOL
|
||||||
|
STDCALL
|
||||||
|
NtGdiAlphaBlend(
|
||||||
|
HDC hDCDest,
|
||||||
|
INT XOriginDest,
|
||||||
|
INT YOriginDest,
|
||||||
|
INT WidthDest,
|
||||||
|
INT HeightDest,
|
||||||
|
HDC hDCSrc,
|
||||||
|
INT XOriginSrc,
|
||||||
|
INT YOriginSrc,
|
||||||
|
INT WidthSrc,
|
||||||
|
INT HeightSrc,
|
||||||
|
BLENDFUNCTION BlendFunc);
|
||||||
|
|
||||||
BOOL
|
BOOL
|
||||||
STDCALL
|
STDCALL
|
||||||
NtGdiBitBlt (
|
NtGdiBitBlt (
|
||||||
|
|
Loading…
Reference in a new issue