Module: wine Branch: master Commit: b6f92ceaed4d1a1561d624bf79c5493c5973f5f3 URL: http://source.winehq.org/git/wine.git/?a=commit;h=b6f92ceaed4d1a1561d624bf79...
Author: Nikolay Sivov nsivov@codeweavers.com Date: Fri Mar 26 03:21:08 2010 +0300
shlwapi: Fix prototype for SHGetShellKey and extend trace.
---
dlls/shlwapi/ordinal.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/dlls/shlwapi/ordinal.c b/dlls/shlwapi/ordinal.c index f378ecf..93bf243 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; }
/***********************************************************************