https://git.reactos.org/?p=reactos.git;a=commitdiff;h=5467cc949322e942a9dfec...
commit 5467cc949322e942a9dfecd33167d3e15e6c5dc8 Author: Katayama Hirofumi MZ katayama.hirofumi.mz@gmail.com AuthorDate: Sun Oct 28 03:27:49 2018 +0900 Commit: GitHub noreply@github.com CommitDate: Sun Oct 28 03:27:49 2018 +0900
[NTUSER] NtUserxSwitchToThisWindow 2nd argument is fAltTab (#989)
Fix the 2nd parameter name of NtUserxSwitchToThisWindow. #988 similiarly. CORE-15165 --- win32ss/user/user32/include/ntwrapper.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/win32ss/user/user32/include/ntwrapper.h b/win32ss/user/user32/include/ntwrapper.h index e1d31f9fd7..67b67de6ed 100644 --- a/win32ss/user/user32/include/ntwrapper.h +++ b/win32ss/user/user32/include/ntwrapper.h @@ -688,9 +688,9 @@ EXTINLINE BOOL NtUserxUpdateUiState(HWND hWnd, DWORD Param) return (BOOL)NtUserCallTwoParam((DWORD_PTR)hWnd, (DWORD_PTR)Param, TWOPARAM_ROUTINE_ROS_UPDATEUISTATE); }
-EXTINLINE VOID NtUserxSwitchToThisWindow(HWND hWnd, BOOL bUnknown) +EXTINLINE VOID NtUserxSwitchToThisWindow(HWND hWnd, BOOL fAltTab) { - NtUserCallTwoParam((DWORD_PTR)hWnd, (DWORD_PTR)bUnknown, TWOPARAM_ROUTINE_SWITCHTOTHISWINDOW); + NtUserCallTwoParam((DWORD_PTR)hWnd, (DWORD_PTR)fAltTab, TWOPARAM_ROUTINE_SWITCHTOTHISWINDOW); }
EXTINLINE BOOL NtUserxShowOwnedPopups(HWND hWnd, BOOL fShow)