Commit 005808cb authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard

urlmon: Added 111 ordinal stub.

parent 4856bd10
......@@ -94,6 +94,7 @@
@ stub WriteHitLogging
@ stub ZonesReInit
111 stdcall @(wstr) IsProtectedModeURL
331 stdcall @(ptr long ptr) propsys.InitPropVariantFromBuffer
335 stdcall @(ptr long ptr) propsys.InitVariantFromBuffer
362 stdcall @(ptr ptr) propsys.InitVariantFromGUIDAsString
......
......@@ -907,6 +907,16 @@ BOOL WINAPI IsLoggingEnabledW(LPCWSTR url)
}
/***********************************************************************
* IsProtectedModeURL (URLMON.111)
* Undocumented, added in IE7
*/
BOOL WINAPI IsProtectedModeURL(const WCHAR *url)
{
FIXME("stub: %s\n", debugstr_w(url));
return TRUE;
}
/***********************************************************************
* URLMON_410 (URLMON.410)
* Undocumented, added in IE8
*/
......
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