Stubs for CloseDesktop and CloseWindowStation.

This commit is contained in:
Sergey Turchanov 1999-04-10 16:48:46 +00:00 committed by Alexandre Julliard
parent c6ba86377e
commit 2f5a152e9e
2 changed files with 13 additions and 2 deletions

View File

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

View File

@ -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)
*/ */