Commit e6f2ec47 authored by Owen Rudge's avatar Owen Rudge Committed by Alexandre Julliard

shlwapi: Implement stub for ZoneCheckUrlExW.

parent 79d671b7
......@@ -4672,3 +4672,28 @@ INT WINAPI SHFormatDateTimeA(const FILETIME UNALIGNED *fileTime, DWORD *flags,
HeapFree(GetProcessHeap(), 0, bufW);
return retval;
}
/***********************************************************************
* ZoneCheckUrlExW [SHLWAPI.231]
*
* Checks the details of the security zone for the supplied site. (?)
*
* PARAMS
*
* szURL [I] Pointer to the URL to check
*
* Other parameters currently unknown.
*
* RETURNS
* unknown
*/
INT WINAPI ZoneCheckUrlExW(LPWSTR szURL, PVOID pUnknown, DWORD dwUnknown2,
DWORD dwUnknown3, DWORD dwUnknown4, DWORD dwUnknown5, DWORD dwUnknown6,
DWORD dwUnknown7)
{
FIXME("(%s,%p,%x,%x,%x,%x,%x,%x) STUB\n", debugstr_w(szURL), pUnknown, dwUnknown2,
dwUnknown3, dwUnknown4, dwUnknown5, dwUnknown6, dwUnknown7);
return 0;
}
......@@ -228,7 +228,7 @@
228 stub -noname ZoneCheckUrlA
229 stub -noname ZoneCheckUrlW
230 stub -noname ZoneCheckUrlExA
231 stub -noname ZoneCheckUrlExW
231 stdcall -noname ZoneCheckUrlExW(wstr ptr long long long long long long)
232 stub -noname ZoneCheckUrlExCacheA
233 stub -noname ZoneCheckUrlExCacheW
234 stub -noname ZoneCheckHost
......
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