mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
urlmon: Added 111 ordinal stub.
This commit is contained in:
parent
4856bd1015
commit
005808cb0e
2 changed files with 11 additions and 0 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue