mirror of
https://github.com/reactos/reactos.git
synced 2024-12-26 00:54:40 +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);
|
||||
|
||||
/* 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
|
||||
STDCALL
|
||||
NtGdiBitBlt (
|
||||
|
|
Loading…
Reference in a new issue