Added stub for SwitchDesktop.

This commit is contained in:
Steven Edwards 2004-09-14 19:29:11 +00:00 committed by Alexandre Julliard
parent 1a77ea567c
commit 4d563e0195
2 changed files with 12 additions and 1 deletions

View File

@ -572,7 +572,7 @@
@ stdcall ShowWindowAsync(long long)
@ stdcall SubtractRect(ptr ptr ptr)
@ stdcall SwapMouseButton(long)
@ stub SwitchDesktop
@ stdcall SwitchDesktop(long)
@ stdcall SwitchToThisWindow(long long)
# @ stub SysErrorBox
@ stdcall SystemParametersInfoA(long long ptr long)

View File

@ -3273,3 +3273,14 @@ BOOL WINAPI GetWindowInfo( HWND hwnd, PWINDOWINFO pwi)
return TRUE;
}
/******************************************************************************
* SwitchDesktop (USER32.@)
*
* NOTES: Sets the current input or interactive desktop.
*/
BOOL WINAPI SwitchDesktop( HDESK hDesktop)
{
FIXME("SwitchDesktop(hwnd %p) stub!\n", hDesktop);
return TRUE;
}