urlmon: Add CoInternetGetBrowserProfile stub.
Signed-off-by: Dmitry Timoshkov <dmitry@baikal.ru> Signed-off-by: Jacek Caban <jacek@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
916bd0e4c2
commit
9f89464e0e
|
@ -111,4 +111,5 @@
|
|||
423 stdcall @(long long long long) LogSqmUXCommandOffsetInternal
|
||||
444 stdcall @(long long long) MapUriToBrowserEmulationState
|
||||
445 stdcall @(long long) MapBrowserEmulationModeToUserAgent
|
||||
446 stdcall @(long) CoInternetGetBrowserProfile
|
||||
455 stdcall @() FlushUrlmonZonesCache
|
||||
|
|
|
@ -810,6 +810,16 @@ int WINAPI MapBrowserEmulationModeToUserAgent(DWORD unk1, DWORD unk2)
|
|||
return 0;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* CoInternetGetBrowserProfile (URLMON.446)
|
||||
* Undocumented, added in IE8
|
||||
*/
|
||||
HRESULT WINAPI CoInternetGetBrowserProfile(DWORD unk)
|
||||
{
|
||||
FIXME("%x: stub\n", unk);
|
||||
return E_NOTIMPL;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* FlushUrlmonZonesCache (URLMON.455)
|
||||
* Undocumented, added in IE8
|
||||
|
|
Loading…
Reference in New Issue