mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 08:55:19 +00:00
Add 5th parameter to NtUserFindWindowEx
svn path=/trunk/; revision=29269
This commit is contained in:
parent
51de002eae
commit
88cd9f01f0
4 changed files with 9 additions and 6 deletions
|
@ -728,7 +728,8 @@ FindWindowExA(HWND hwndParent,
|
|||
Result = NtUserFindWindowEx(hwndParent,
|
||||
hwndChildAfter,
|
||||
pucClassName,
|
||||
pucWindowName);
|
||||
pucWindowName,
|
||||
0);
|
||||
|
||||
if (!IS_ATOM(lpszClass) && lpszClass != NULL)
|
||||
RtlFreeUnicodeString(&ucClassName);
|
||||
|
@ -774,7 +775,8 @@ FindWindowExW(HWND hwndParent,
|
|||
return NtUserFindWindowEx(hwndParent,
|
||||
hwndChildAfter,
|
||||
pucClassName,
|
||||
pucWindowName);
|
||||
pucWindowName,
|
||||
0);
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -902,7 +902,8 @@ NtUserFindWindowEx(
|
|||
HWND hwndParent,
|
||||
HWND hwndChildAfter,
|
||||
PUNICODE_STRING ucClassName,
|
||||
PUNICODE_STRING ucWindowName
|
||||
PUNICODE_STRING ucWindowName,
|
||||
DWORD dwUnknown
|
||||
);
|
||||
|
||||
DWORD
|
||||
|
|
|
@ -2464,7 +2464,8 @@ HWND STDCALL
|
|||
NtUserFindWindowEx(HWND hwndParent,
|
||||
HWND hwndChildAfter,
|
||||
PUNICODE_STRING ucClassName,
|
||||
PUNICODE_STRING ucWindowName)
|
||||
PUNICODE_STRING ucWindowName,
|
||||
DWORD dwUnknown)
|
||||
{
|
||||
PWINDOW_OBJECT Parent, ChildAfter;
|
||||
UNICODE_STRING ClassName = {0}, WindowName = {0};
|
||||
|
|
|
@ -384,7 +384,7 @@ NtUserEvent 1
|
|||
NtUserExcludeUpdateRgn 2
|
||||
NtUserFillWindow 4
|
||||
# NtUserFindExistingCursorIcon 3 Wrong number of param ?
|
||||
# NtUserFindWindowEx 5 Wrong number of param ?
|
||||
NtUserFindWindowEx 5
|
||||
NtUserFlashWindowEx 1
|
||||
NtUserGetAltTabInfo 6
|
||||
NtUserGetAncestor 2
|
||||
|
@ -678,7 +678,6 @@ NtGdiDrawStream 3
|
|||
# Wrong number of param ?
|
||||
NtUserEnumDisplayMonitors 5
|
||||
NtUserFindExistingCursorIcon 4
|
||||
NtUserFindWindowEx 4
|
||||
NtUserGetClassInfo 4
|
||||
NtUserInitTask 11
|
||||
NtUserSetCursorIconData 6
|
||||
|
|
Loading…
Reference in a new issue