urlmon: Added 111 ordinal stub.

This commit is contained in:
Piotr Caban 2011-09-16 11:21:24 +02:00 committed by Alexandre Julliard
parent 4856bd1015
commit 005808cb0e
2 changed files with 11 additions and 0 deletions

View file

@ -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

View file

@ -906,6 +906,16 @@ BOOL WINAPI IsLoggingEnabledW(LPCWSTR url)
return FALSE;
}
/***********************************************************************
* 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