Commit 4d563e01 authored by Steven Edwards's avatar Steven Edwards Committed by Alexandre Julliard

Added stub for SwitchDesktop.

parent 1a77ea56
......@@ -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)
......
......@@ -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;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment