partial implementation of ShowWindowAsync() using the synchronous NtUserShowWindow() call to activate the desktop switcher

svn path=/trunk/; revision=18271
This commit is contained in:
Martin Fuchs 2005-10-05 14:47:07 +00:00
parent f8b4f3f219
commit 5f5bf68c82
3 changed files with 10 additions and 9 deletions

View file

@ -1568,11 +1568,11 @@ NtUserShowWindow(
HWND hWnd,
LONG nCmdShow);
DWORD
BOOL
STDCALL
NtUserShowWindowAsync(
DWORD Unknown0,
DWORD Unknown1);
HWND hWnd,
LONG nCmdShow);
BOOL
STDCALL

View file

@ -1280,8 +1280,7 @@ BOOL STDCALL
ShowWindowAsync(HWND hWnd,
int nCmdShow)
{
UNIMPLEMENTED;
return FALSE;
return NtUserShowWindowAsync(hWnd, nCmdShow);
}

View file

@ -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
}