[NTUSER] Add 'Win:' comment to IntEndDeferWindowPosEx

CORE-11700
This commit is contained in:
Katayama Hirofumi MZ 2023-02-14 10:30:16 +09:00
parent 460a01b167
commit 9140300c2a

View file

@ -3100,7 +3100,8 @@ END:
return retvalue;
}
BOOL FASTCALL IntEndDeferWindowPosEx( HDWP hdwp, BOOL sAsync )
/* Win: xxxEndDeferWindowPosEx */
BOOL FASTCALL IntEndDeferWindowPosEx(HDWP hdwp, BOOL bAsync)
{
PSMWP pDWP;
PCVR winpos;
@ -3130,7 +3131,7 @@ BOOL FASTCALL IntEndDeferWindowPosEx( HDWP hdwp, BOOL sAsync )
UserRefObjectCo(pwnd, &Ref);
if ( sAsync )
if (bAsync)
{
LRESULT lRes;
PWINDOWPOS ppos = ExAllocatePoolWithTag(PagedPool, sizeof(WINDOWPOS), USERTAG_SWP);