Implement ordinal 342.
This commit is contained in:
parent
7c18771736
commit
ae3d4261d5
|
@ -1793,14 +1793,9 @@ HICON WINAPI SHLWAPI_337(LPCWSTR lpszFile, INT nIconIndex, HICON *phiconLarge,
|
|||
* @ [SHLWAPI.342]
|
||||
*
|
||||
*/
|
||||
DWORD WINAPI SHLWAPI_342 (
|
||||
LPDWORD w, /* [out] location to put HKEY value??? */
|
||||
HKEY x, /* [in] appears to be HKEY_CURRENT_USER */
|
||||
LPVOID y)
|
||||
LONG WINAPI SHLWAPI_342( PLONG dest, LONG xchg, LONG compare)
|
||||
{
|
||||
FIXME("(%p 0x%08x %p)stub\n", w,x,y);
|
||||
*w = (DWORD)x;
|
||||
return /* 0xabba1249 */ 0;
|
||||
return InterlockedCompareExchange(dest, xchg, compare);
|
||||
}
|
||||
|
||||
/*************************************************************************
|
||||
|
|
|
@ -351,7 +351,7 @@ debug_channels (shell)
|
|||
339 forward @ kernel32.GetNumberFormatW
|
||||
340 forward @ user32.MessageBoxW
|
||||
341 forward @ kernel32.FindNextFileW
|
||||
342 stdcall @(long long long) SHLWAPI_342
|
||||
342 stdcall @(ptr long long) SHLWAPI_342
|
||||
343 stub @
|
||||
344 stub @
|
||||
345 stub @
|
||||
|
|
Loading…
Reference in New Issue