mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 17:05:46 +00:00
rename NtGdiSetHookFlags into IntGdiSetHookFlags
svn path=/trunk/; revision=28087
This commit is contained in:
parent
bedc89bb5f
commit
9574b5dbe1
3 changed files with 4 additions and 2 deletions
|
@ -255,5 +255,7 @@ IntCreateCompatibleBitmap(PDC Dc,
|
|||
|
||||
HDC STDCALL IntGdiGetDCState(HDC hDC);
|
||||
|
||||
WORD STDCALL IntGdiSetHookFlags(HDC hDC, WORD Flags);
|
||||
|
||||
#endif /* _WIN32K_INTGDI_H */
|
||||
|
||||
|
|
|
@ -244,7 +244,7 @@ DceReleaseDC(DCE* dce, BOOL EndPaint)
|
|||
if (dce->DCXFlags & DCX_CACHE)
|
||||
{
|
||||
/* make the DC clean so that SetDCState doesn't try to update the vis rgn */
|
||||
NtGdiSetHookFlags(dce->hDC, DCHF_VALIDATEVISRGN);
|
||||
IntGdiSetHookFlags(dce->hDC, DCHF_VALIDATEVISRGN);
|
||||
|
||||
if( dce->pProcess ) // Attempt to fix Dc_Attr problem.
|
||||
DC_SetOwnership( defaultDCstate, dce->pProcess);
|
||||
|
|
|
@ -2067,7 +2067,7 @@ NtGdiSelectObject(HDC hDC, HGDIOBJ hGDIObj)
|
|||
}
|
||||
|
||||
WORD STDCALL
|
||||
NtGdiSetHookFlags(HDC hDC, WORD Flags)
|
||||
IntGdiSetHookFlags(HDC hDC, WORD Flags)
|
||||
{
|
||||
WORD wRet;
|
||||
DC *dc = DC_LockDc(hDC);
|
||||
|
|
Loading…
Reference in a new issue