advapi32: Return a fake handle from LogonUserW.

This commit is contained in:
Hans Leidekker 2013-11-13 15:31:54 +01:00 committed by Alexandre Julliard
parent c3da4ce088
commit 02970b578e

View file

@ -280,6 +280,7 @@ BOOL WINAPI LogonUserW( LPCWSTR lpszUsername, LPCWSTR lpszDomain, LPCWSTR lpszPa
FIXME("%s %s %p 0x%08x 0x%08x %p - stub\n", debugstr_w(lpszUsername),
debugstr_w(lpszDomain), lpszPassword, dwLogonType, dwLogonProvider, phToken);
*phToken = (HANDLE *)0xdeadbeef;
return TRUE;
}