Commit ae3d4261 authored by Turchanov Sergei's avatar Turchanov Sergei Committed by Alexandre Julliard

Implement ordinal 342.

parent 7c187717
......@@ -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 @
......
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