rename NtGdiSetDCState to IntGdiSetDCState

svn path=/trunk/; revision=28088
This commit is contained in:
Timo Kreuzer 2007-08-02 00:23:48 +00:00
parent 9574b5dbe1
commit a0c19eb6f9
3 changed files with 5 additions and 3 deletions

View file

@ -257,5 +257,7 @@ HDC STDCALL IntGdiGetDCState(HDC hDC);
WORD STDCALL IntGdiSetHookFlags(HDC hDC, WORD Flags);
VOID STDCALL IntGdiSetDCState ( HDC hDC, HDC hDCSave );
#endif /* _WIN32K_INTGDI_H */

View file

@ -251,7 +251,7 @@ DceReleaseDC(DCE* dce, BOOL EndPaint)
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;

View file

@ -1327,7 +1327,7 @@ IntGdiGetDCState(HDC hDC)
VOID
STDCALL
NtGdiSetDCState ( HDC hDC, HDC hDCSave )
IntGdiSetDCState ( HDC hDC, HDC hDCSave )
{
PDC dc, dcs;
@ -1840,7 +1840,7 @@ NtGdiRestoreDC(HDC hDC, INT SaveLevel)
DC_UnlockDc( dc );
DC_UnlockDc( dcs );
NtGdiSetDCState(hDC, hdcs);
IntGdiSetDCState(hDC, hdcs);
if (!PATH_AssignGdiPath( &dc->w.path, &dcs->w.path ))
{