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
1 changed files with 3 additions and 3 deletions

View File

@ -4310,10 +4310,10 @@ BOOL WINAPI SHSkipJunction(IBindCtx *pbc, const CLSID *pclsid)
/*********************************************************************** /***********************************************************************
* SHGetShellKey (SHLWAPI.@) * 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); FIXME("(0x%08x, %s, %d): stub\n", flags, debugstr_w(sub_key), create);
return 0x50; return (HKEY)0x50;
} }
/*********************************************************************** /***********************************************************************