From b6f92ceaed4d1a1561d624bf79c5493c5973f5f3 Mon Sep 17 00:00:00 2001 From: Nikolay Sivov Date: Fri, 26 Mar 2010 03:21:08 +0300 Subject: [PATCH] shlwapi: Fix prototype for SHGetShellKey and extend trace. --- dlls/shlwapi/ordinal.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dlls/shlwapi/ordinal.c b/dlls/shlwapi/ordinal.c index f378ecfc5f6..93bf2432ee7 100644 --- a/dlls/shlwapi/ordinal.c +++ b/dlls/shlwapi/ordinal.c @@ -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; } /*********************************************************************** -- 2.11.4.GIT