https://git.reactos.org/?p=reactos.git;a=commitdiff;h=9140300c2a924fdb957c6c4a1d2603133163d4da

commit 9140300c2a924fdb957c6c4a1d2603133163d4da
Author:     Katayama Hirofumi MZ <[email protected]>
AuthorDate: Tue Feb 14 10:30:16 2023 +0900
Commit:     Katayama Hirofumi MZ <[email protected]>
CommitDate: Tue Feb 14 10:30:22 2023 +0900

    [NTUSER] Add 'Win:' comment to IntEndDeferWindowPosEx
    
    CORE-11700
---
 win32ss/user/ntuser/winpos.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/win32ss/user/ntuser/winpos.c b/win32ss/user/ntuser/winpos.c
index f95da850077..516d9620b97 100644
--- a/win32ss/user/ntuser/winpos.c
+++ b/win32ss/user/ntuser/winpos.c
@@ -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);

Reply via email to