Changed OpenDesktop stub to Win9x behavior for QuickTime 4.

This commit is contained in:
Ian Schmidt 1999-11-04 01:36:24 +00:00 committed by Alexandre Julliard
parent 1db96873f3
commit 66695dddd5
1 changed files with 5 additions and 1 deletions

View File

@ -310,13 +310,17 @@ BOOL WINAPI IsDebuggerPresent() {
*
* NOTES
* Return type should be HDESK
*
* Not supported on Win9x - returns NULL and calls SetLastError.
*/
HANDLE WINAPI OpenDesktopA( LPCSTR lpszDesktop, DWORD dwFlags,
BOOL fInherit, DWORD dwDesiredAccess )
{
FIXME_(win32)("(%s,%lx,%i,%lx): stub\n",debugstr_a(lpszDesktop),dwFlags,
fInherit,dwDesiredAccess);
return 1;
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return NULL;
}