Commit 65b845b0 authored by Guy L. Albertelli's avatar Guy L. Albertelli Committed by Alexandre Julliard

- Remove stub for ordinal 394 and replace with forward to

CreateDialogIndirectParamA where tracing shows it going. - Add stub for ordinal 430.
parent 23739a33
......@@ -2182,17 +2182,6 @@ COLORREF WINAPI ColorHLSToRGB(WORD wHue, WORD wLuminosity, WORD wSaturation)
}
/*************************************************************************
* @ [SHLWAPI.394]
*
* Called by ICQ2000b install via SHDOCVW
*/
LPVOID WINAPI SHLWAPI_394 (DWORD x, DWORD y, LPWSTR someURL, DWORD z)
{
FIXME("(0x%08lx, 0x%08lx, '%s', 0x%08lx), stub.\n", x, y, debugstr_w(someURL), z);
return (LPVOID)0xdeadbee1;
}
/*************************************************************************
* @ [SHLWAPI.413]
*
* Function unknown seems to always to return 0
......@@ -2225,6 +2214,15 @@ BOOL WINAPI SHLWAPI_418 (HMODULE x)
}
/*************************************************************************
* @ [SHLWAPI.430]
*/
DWORD WINAPI SHLWAPI_430 (HINSTANCE hModule, HANDLE heap)
{
FIXME("(0x%08lx 0x%08lx) stub\n", (DWORD)hModule, (DWORD)heap);
return E_FAIL; /* This is what is used if shlwapi not loaded */
}
/*************************************************************************
* @ [SHLWAPI.431]
*/
DWORD WINAPI SHLWAPI_431 (DWORD x)
......
......@@ -393,7 +393,7 @@ init SHLWAPI_LibMain
391 stdcall @(ptr ptr ptr ptr ptr ) SHLWAPI_391
392 stub @
393 stub @
394 stdcall @(long long wstr long) SHLWAPI_394
394 forward @ user32.CreateDialogIndirectParamA
395 stub @
396 stub @
397 stub @
......@@ -429,7 +429,7 @@ init SHLWAPI_LibMain
427 stub @
428 forward @ user32.TrackPopupMenuEx
429 stub @
430 stub @
430 stdcall @(long long) SHLWAPI_430
431 stdcall @(long) SHLWAPI_431
432 stub @
433 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