Commit b6f92cea authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

shlwapi: Fix prototype for SHGetShellKey and extend trace.

parent 0c2ec545
......@@ -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;
}
/***********************************************************************
......
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