mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 04:11:30 +00:00
94b4b5c127
Fix results from tests, add (last one) gdi batch support for ExtSelectClipRgn. Left commented out test code in tree this time. Pass Katayama Hirofumi MZ SelectClipRgn tests. After commit will plug in the last batch. After 12 years. See CORE-13817 and CORE-15906.
19 lines
558 B
C
19 lines
558 B
C
#pragma once
|
|
|
|
_Success_(return!=ERROR)
|
|
INT
|
|
FASTCALL
|
|
GdiGetClipBox(
|
|
_In_ HDC hdc,
|
|
_Out_ LPRECT prc);
|
|
|
|
VOID FASTCALL GdiSelectVisRgn(HDC hdc, PREGION prgn);
|
|
INT FASTCALL IntGdiExtSelectClipRgn (PDC dc, PREGION prgn, int fnMode);
|
|
VOID FASTCALL CLIPPING_UpdateGCRegion(DC* Dc);
|
|
VOID FASTCALL IntGdiReleaseRaoRgn(PDC);
|
|
VOID FASTCALL IntGdiReleaseVisRgn(PDC);
|
|
VOID FASTCALL UpdateVisRgn(PDC);
|
|
BOOL FASTCALL REGION_bCopy(PREGION,PREGION);
|
|
BOOL FASTCALL REGION_bIntersectRegion(PREGION,PREGION,PREGION);
|
|
int FASTCALL IntGdiExtSelectClipRect(PDC,PRECTL,int);
|