Commit 2f5a152e authored by Sergey Turchanov's avatar Sergey Turchanov Committed by Alexandre Julliard

Stubs for CloseDesktop and CloseWindowStation.

parent c6ba8637
...@@ -56,9 +56,9 @@ init MAIN_UserInit ...@@ -56,9 +56,9 @@ init MAIN_UserInit
52 stdcall ClientToScreen(long ptr) ClientToScreen 52 stdcall ClientToScreen(long ptr) ClientToScreen
53 stdcall ClipCursor(ptr) ClipCursor 53 stdcall ClipCursor(ptr) ClipCursor
54 stdcall CloseClipboard() CloseClipboard 54 stdcall CloseClipboard() CloseClipboard
55 stub CloseDesktop 55 stdcall CloseDesktop(long) CloseDesktop
56 stdcall CloseWindow(long) CloseWindow 56 stdcall CloseWindow(long) CloseWindow
57 stub CloseWindowStation 57 stdcall CloseWindowStation(long) CloseWindowStation
58 stdcall CopyAcceleratorTableA(long ptr long) CopyAcceleratorTableA 58 stdcall CopyAcceleratorTableA(long ptr long) CopyAcceleratorTableA
59 stdcall CopyAcceleratorTableW(long ptr long) CopyAcceleratorTableW 59 stdcall CopyAcceleratorTableW(long ptr long) CopyAcceleratorTableW
60 stdcall CopyIcon(long) CopyIcon 60 stdcall CopyIcon(long) CopyIcon
......
...@@ -500,6 +500,17 @@ HDESK WINAPI CreateDesktopW( ...@@ -500,6 +500,17 @@ HDESK WINAPI CreateDesktopW(
return 0xcafedead; return 0xcafedead;
} }
BOOL WINAPI CloseWindowStation(HWINSTA hWinSta)
{
FIXME(win32, "(0x%08x)\n", hWinSta);
return TRUE;
}
BOOL WINAPI CloseDesktop(HDESK hDesk)
{
FIXME(win32, "(0x%08x)\n", hDesk);
return TRUE;
}
/*********************************************************************** /***********************************************************************
* SetWindowStationUser (USER32.521) * SetWindowStationUser (USER32.521)
*/ */
......
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