Author: tkreuzer
Date: Mon Jul 30 06:24:08 2007
New Revision: 28029
URL:
http://svn.reactos.org/svn/reactos?rev=28029&view=rev
Log:
rename NtGdiSelectVisRgn to IntGdiSelectVisRgn
Modified:
trunk/reactos/subsystems/win32/win32k/include/intgdi.h
trunk/reactos/subsystems/win32/win32k/ntuser/windc.c
trunk/reactos/subsystems/win32/win32k/objects/cliprgn.c
trunk/reactos/subsystems/win32/win32k/objects/dc.c
Modified: trunk/reactos/subsystems/win32/win32k/include/intgdi.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/subsystems/win32/win32k/in…
==============================================================================
--- trunk/reactos/subsystems/win32/win32k/include/intgdi.h (original)
+++ trunk/reactos/subsystems/win32/win32k/include/intgdi.h Mon Jul 30 06:24:08 2007
@@ -132,6 +132,11 @@
IntGdiGetClipBox(HDC hDC,
LPRECT rc);
+INT
+STDCALL
+IntGdiSelectVisRgn(HDC hdc,
+ HRGN hrgn);
+
HRGN FASTCALL REGION_CropRgn(HRGN hDst, HRGN hSrc, const PRECT lpRect, PPOINT lpPt);
void FASTCALL REGION_UnionRectWithRegion(const RECT *rect, ROSRGNDATA *rgn);
INT FASTCALL UnsafeIntGetRgnBox(PROSRGNDATA Rgn, LPRECT pRect);
Modified: trunk/reactos/subsystems/win32/win32k/ntuser/windc.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/subsystems/win32/win32k/nt…
==============================================================================
--- trunk/reactos/subsystems/win32/win32k/ntuser/windc.c (original)
+++ trunk/reactos/subsystems/win32/win32k/ntuser/windc.c Mon Jul 30 06:24:08 2007
@@ -337,7 +337,7 @@
}
Dce->DCXFlags &= ~DCX_DCEDIRTY;
- NtGdiSelectVisRgn(Dce->hDC, hRgnVisible);
+ IntGdiSelectVisRgn(Dce->hDC, hRgnVisible);
if (Window != NULL)
{
Modified: trunk/reactos/subsystems/win32/win32k/objects/cliprgn.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/subsystems/win32/win32k/ob…
==============================================================================
--- trunk/reactos/subsystems/win32/win32k/objects/cliprgn.c (original)
+++ trunk/reactos/subsystems/win32/win32k/objects/cliprgn.c Mon Jul 30 06:24:08 2007
@@ -60,7 +60,7 @@
}
INT STDCALL
-NtGdiSelectVisRgn(HDC hdc, HRGN hrgn)
+IntGdiSelectVisRgn(HDC hdc, HRGN hrgn)
{
int retval;
DC *dc;
Modified: trunk/reactos/subsystems/win32/win32k/objects/dc.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/subsystems/win32/win32k/ob…
==============================================================================
--- trunk/reactos/subsystems/win32/win32k/objects/dc.c (original)
+++ trunk/reactos/subsystems/win32/win32k/objects/dc.c Mon Jul 30 06:24:08 2007
@@ -257,7 +257,7 @@
}
hVisRgn = NtGdiCreateRectRgn(0, 0, 1, 1);
- NtGdiSelectVisRgn(hNewDC, hVisRgn);
+ IntGdiSelectVisRgn(hNewDC, hVisRgn);
NtGdiDeleteObject(hVisRgn);
DC_InitDC(hNewDC);
@@ -914,7 +914,7 @@
hVisRgn = NtGdiCreateRectRgn(0, 0, NewDC->GDIInfo->ulHorzRes,
NewDC->GDIInfo->ulVertRes);
- NtGdiSelectVisRgn(hNewDC, hVisRgn);
+ IntGdiSelectVisRgn(hNewDC, hVisRgn);
NtGdiDeleteObject(hVisRgn);
/* Initialize the DC state */
@@ -2044,7 +2044,7 @@
DC_UnlockDc ( dc );
hVisRgn = NtGdiCreateRectRgn ( 0, 0, pb->SurfObj.sizlBitmap.cx,
pb->SurfObj.sizlBitmap.cy );
BITMAPOBJ_UnlockBitmap( pb );
- NtGdiSelectVisRgn ( hDC, hVisRgn );
+ IntGdiSelectVisRgn ( hDC, hVisRgn );
NtGdiDeleteObject ( hVisRgn );
return objOrg;