mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 01:55:39 +00:00
SelectClipRgn: call NtGdiExtSelectClipRgn with RGN_COPY
svn path=/trunk/; revision=28206
This commit is contained in:
parent
e7b5eb420f
commit
4237ee71bd
2 changed files with 14 additions and 1 deletions
|
@ -524,7 +524,7 @@ ScaleViewportExtEx@24
|
||||||
ScaleWindowExtEx@24
|
ScaleWindowExtEx@24
|
||||||
SelectBrushLocal@8
|
SelectBrushLocal@8
|
||||||
SelectClipPath@8
|
SelectClipPath@8
|
||||||
SelectClipRgn@8=NtGdiSelectClipRgn@8
|
SelectClipRgn@8
|
||||||
SelectFontLocal@8
|
SelectFontLocal@8
|
||||||
SelectObject@8=NtGdiSelectObject@8
|
SelectObject@8=NtGdiSelectObject@8
|
||||||
SelectPalette@12=NtGdiSelectPalette@12
|
SelectPalette@12=NtGdiSelectPalette@12
|
||||||
|
|
|
@ -1,6 +1,19 @@
|
||||||
#include "precomp.h"
|
#include "precomp.h"
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @implemented
|
||||||
|
*/
|
||||||
|
int STDCALL
|
||||||
|
SelectClipRgn(
|
||||||
|
HDC hdc,
|
||||||
|
HRGN hrgn
|
||||||
|
)
|
||||||
|
{
|
||||||
|
return NtGdiExtSelectClipRgn(hdc, hrgn, RGN_COPY);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* @implemented
|
* @implemented
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue