Skip to content
Snippets Groups Projects
Commit 4d563e01 authored by Steven Edwards's avatar Steven Edwards Committed by Alexandre Julliard
Browse files

Added stub for SwitchDesktop.

parent 1a77ea56
No related branches found
No related tags found
No related merge requests found
......@@ -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;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment