[PATCH] ieframe: Prefer built-in version.

Dmitry Timoshkov dmitry at baikal.ru
Wed May 29 06:11:08 CDT 2019


It seems wrong to prefer native ieframe.dll while other key components
(mshtml, urlmon) are built-in. Sometimes it even causes problems when
an application installs parts of IE and that suddenly changes behavior
when it shouldn't.

Signed-off-by: Dmitry Timoshkov <dmitry at baikal.ru>
---
 dlls/ieframe/ieframe_main.c | 2 --
 1 file changed, 2 deletions(-)

diff --git a/dlls/ieframe/ieframe_main.c b/dlls/ieframe/ieframe_main.c
index e207ce0575..5abe502f1e 100644
--- a/dlls/ieframe/ieframe_main.c
+++ b/dlls/ieframe/ieframe_main.c
@@ -187,8 +187,6 @@ BOOL WINAPI DllMain(HINSTANCE hInstDLL, DWORD fdwReason, LPVOID lpv)
 
     switch(fdwReason)
     {
-    case DLL_WINE_PREATTACH:
-        return FALSE;  /* prefer native version */
     case DLL_PROCESS_ATTACH:
         ieframe_instance = hInstDLL;
         register_iewindow_class();
-- 
2.20.1




More information about the wine-devel mailing list