mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 09:34:43 +00:00
[NTUSER] Add 'Win:' comment to IntEndDeferWindowPosEx
CORE-11700
This commit is contained in:
parent
460a01b167
commit
9140300c2a
1 changed files with 3 additions and 2 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue