shlwapi: Fix prototype for SHGetShellKey and extend trace.

This commit is contained in:
Nikolay Sivov 2010-03-26 03:21:08 +03:00 committed by Alexandre Julliard
parent 0c2ec54535
commit b6f92ceaed

View file

@ -4310,10 +4310,10 @@ BOOL WINAPI SHSkipJunction(IBindCtx *pbc, const CLSID *pclsid)
/***********************************************************************
* SHGetShellKey (SHLWAPI.@)
*/
DWORD WINAPI SHGetShellKey(DWORD a, DWORD b, DWORD c)
HKEY WINAPI SHGetShellKey(DWORD flags, LPCWSTR sub_key, BOOL create)
{
FIXME("(%x, %x, %x): stub\n", a, b, c);
return 0x50;
FIXME("(0x%08x, %s, %d): stub\n", flags, debugstr_w(sub_key), create);
return (HKEY)0x50;
}
/***********************************************************************