>From a5c2eea141d6e15b4a72d37eded348e1140fb085 Mon Sep 17 00:00:00 2001 From: Alistair Leslie-Hughes Date: Tue, 9 Feb 2010 19:48:02 +1100 Subject: [PATCH] Prefer to use the native version To: wine-patches --- dlls/msxml4/main.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/dlls/msxml4/main.c b/dlls/msxml4/main.c index 761184b..1f229d9 100644 --- a/dlls/msxml4/main.c +++ b/dlls/msxml4/main.c @@ -31,6 +31,8 @@ BOOL WINAPI DllMain(HINSTANCE instance, DWORD reason, LPVOID reserved) { switch (reason) { + case DLL_WINE_PREATTACH: + return FALSE; /* prefer native version */ case DLL_PROCESS_ATTACH: DisableThreadLibraryCalls(instance); break; -- 1.6.2.5