mirror of
https://github.com/reactos/reactos.git
synced 2025-07-28 11:31:54 +00:00
rename NtGdiSetDCState to IntGdiSetDCState
svn path=/trunk/; revision=28088
This commit is contained in:
parent
9574b5dbe1
commit
a0c19eb6f9
3 changed files with 5 additions and 3 deletions
|
@ -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 */
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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 ))
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue