[PATCH] urlmon: Add CoInternetGetBrowserProfile stub.

Dmitry Timoshkov dmitry at baikal.ru
Thu May 16 00:54:29 CDT 2019


Signed-off-by: Dmitry Timoshkov <dmitry at baikal.ru>
---
 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 9c7a6d3b37..dab4aa2925 100644
--- a/dlls/urlmon/urlmon.spec
+++ b/dlls/urlmon/urlmon.spec
@@ -109,4 +109,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 06f0698efa..90ea6e7cf2 100644
--- a/dlls/urlmon/urlmon_main.c
+++ b/dlls/urlmon/urlmon_main.c
@@ -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
-- 
2.20.1




More information about the wine-devel mailing list