mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 18:15:11 +00:00
partial implementation of ShowWindowAsync() using the synchronous NtUserShowWindow() call to activate the desktop switcher
svn path=/trunk/; revision=18271
This commit is contained in:
parent
f8b4f3f219
commit
5f5bf68c82
3 changed files with 10 additions and 9 deletions
|
@ -1568,11 +1568,11 @@ NtUserShowWindow(
|
|||
HWND hWnd,
|
||||
LONG nCmdShow);
|
||||
|
||||
DWORD
|
||||
BOOL
|
||||
STDCALL
|
||||
NtUserShowWindowAsync(
|
||||
DWORD Unknown0,
|
||||
DWORD Unknown1);
|
||||
HWND hWnd,
|
||||
LONG nCmdShow);
|
||||
|
||||
BOOL
|
||||
STDCALL
|
||||
|
|
|
@ -1280,8 +1280,7 @@ BOOL STDCALL
|
|||
ShowWindowAsync(HWND hWnd,
|
||||
int nCmdShow)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
return FALSE;
|
||||
return NtUserShowWindowAsync(hWnd, nCmdShow);
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -4162,13 +4162,15 @@ CLEANUP:
|
|||
/*
|
||||
* @unimplemented
|
||||
*/
|
||||
DWORD STDCALL
|
||||
NtUserShowWindowAsync(DWORD Unknown0,
|
||||
DWORD Unknown1)
|
||||
BOOL STDCALL
|
||||
NtUserShowWindowAsync(HWND hWnd, LONG nCmdShow)
|
||||
{
|
||||
#if 0
|
||||
UNIMPLEMENTED
|
||||
|
||||
return 0;
|
||||
#else
|
||||
return NtUserShowWindow(hWnd, nCmdShow);
|
||||
#endif
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue