Author: tkreuzer
Date: Thu Aug 2 04:23:48 2007
New Revision: 28088
URL:
http://svn.reactos.org/svn/reactos?rev=28088&view=rev
Log:
rename NtGdiSetDCState to IntGdiSetDCState
Modified:
trunk/reactos/subsystems/win32/win32k/include/intgdi.h
trunk/reactos/subsystems/win32/win32k/ntuser/windc.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 Thu Aug 2 04:23:48 2007
@@ -257,5 +257,7 @@
WORD STDCALL IntGdiSetHookFlags(HDC hDC, WORD Flags);
+VOID STDCALL IntGdiSetDCState ( HDC hDC, HDC hDCSave );
+
#endif /* _WIN32K_INTGDI_H */
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 Thu Aug 2 04:23:48 2007
@@ -251,7 +251,7 @@
else
DC_SetOwnership( defaultDCstate, PsGetCurrentProcess());
- NtGdiSetDCState(dce->hDC, defaultDCstate);
+ IntGdiSetDCState(dce->hDC, defaultDCstate);
DC_SetOwnership( defaultDCstate, NULL); // Return default dc state to inaccessible
mode.
dce->DCXFlags &= ~DCX_DCEBUSY;
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 Thu Aug 2 04:23:48 2007
@@ -1327,7 +1327,7 @@
VOID
STDCALL
-NtGdiSetDCState ( HDC hDC, HDC hDCSave )
+IntGdiSetDCState ( HDC hDC, HDC hDCSave )
{
PDC dc, dcs;
@@ -1840,7 +1840,7 @@
DC_UnlockDc( dc );
DC_UnlockDc( dcs );
- NtGdiSetDCState(hDC, hdcs);
+ IntGdiSetDCState(hDC, hdcs);
if (!PATH_AssignGdiPath( &dc->w.path, &dcs->w.path ))
{