[3/3] mscoree: Change _CorDllMain fixme to a trace.

Vincent Povirk madewokherd at gmail.com
Wed May 2 16:18:10 CDT 2012


-------------- next part --------------
From 91a64e9930849c69a4d7bf4b55c5aa33d09daf9e Mon Sep 17 00:00:00 2001
From: Vincent Povirk <vincent at codeweavers.com>
Date: Wed, 2 May 2012 13:16:41 -0500
Subject: [PATCH 3/7] mscoree: Change _CorDllMain fixme to a trace.

This function will be called much more often with the new Mono packaging, and
the important thing that it does is vtable fixups, which we have another
fixme for.
---
 dlls/mscoree/corruntimehost.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/mscoree/corruntimehost.c b/dlls/mscoree/corruntimehost.c
index 35815f0..ec68ea1 100644
--- a/dlls/mscoree/corruntimehost.c
+++ b/dlls/mscoree/corruntimehost.c
@@ -900,7 +900,7 @@ __int32 WINAPI _CorExeMain(void)
 
 BOOL WINAPI _CorDllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
 {
-    FIXME("(%p, %d, %p): stub\n", hinstDLL, fdwReason, lpvReserved);
+    TRACE("(%p, %d, %p)\n", hinstDLL, fdwReason, lpvReserved);
 
     switch (fdwReason)
     {
-- 
1.7.9.5


More information about the wine-patches mailing list