Module: wine Branch: master Commit: 9f89464e0e4058dd5e2d036c93fadb992fadb526 URL: https://source.winehq.org/git/wine.git/?a=commit;h=9f89464e0e4058dd5e2d036c9...
Author: Dmitry Timoshkov dmitry@baikal.ru Date: Thu May 16 13:54:29 2019 +0800
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
---
dlls/urlmon/urlmon.spec | 1 + dlls/urlmon/urlmon_main.c | 10 ++++++++++ 2 files changed, 11 insertions(+)
diff --git a/dlls/urlmon/urlmon.spec b/dlls/urlmon/urlmon.spec index 0f9f075..d6a6b43 100644 --- a/dlls/urlmon/urlmon.spec +++ b/dlls/urlmon/urlmon.spec @@ -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 diff --git a/dlls/urlmon/urlmon_main.c b/dlls/urlmon/urlmon_main.c index 5dc0d24..aea1a5c 100644 --- a/dlls/urlmon/urlmon_main.c +++ b/dlls/urlmon/urlmon_main.c @@ -811,6 +811,16 @@ int WINAPI MapBrowserEmulationModeToUserAgent(DWORD unk1, DWORD unk2) }
/*********************************************************************** + * 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 */