[PATCH] ntdll: Use FIXME to show missing exports with default debug settings

Detlef Riekenberg wine.dev at web.de
Sun Aug 14 18:10:11 CDT 2011


That way, we get a better overview, which functions are missing in Wine
for a loaded app / dll.

--
By by ... Detlef
---
 dlls/ntdll/loader.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/ntdll/loader.c b/dlls/ntdll/loader.c
index 5ee7d0a..59f91dc 100644
--- a/dlls/ntdll/loader.c
+++ b/dlls/ntdll/loader.c
@@ -605,7 +605,7 @@ static WINE_MODREF *import_dll( HMODULE module, const IMAGE_IMPORT_DESCRIPTOR *d
             if (!thunk_list->u1.Function)
             {
                 thunk_list->u1.Function = allocate_stub( name, IntToPtr(ordinal) );
-                WARN("No implementation for %s.%d imported from %s, setting to %p\n",
+                FIXME("No implementation for %s.%d imported from %s, setting to %p\n",
                      name, ordinal, debugstr_w(current_modref->ldr.FullDllName.Buffer),
                      (void *)thunk_list->u1.Function );
             }
@@ -621,7 +621,7 @@ static WINE_MODREF *import_dll( HMODULE module, const IMAGE_IMPORT_DESCRIPTOR *d
             if (!thunk_list->u1.Function)
             {
                 thunk_list->u1.Function = allocate_stub( name, (const char*)pe_name->Name );
-                WARN("No implementation for %s.%s imported from %s, setting to %p\n",
+                FIXME("No implementation for %s.%s imported from %s, setting to %p\n",
                      name, pe_name->Name, debugstr_w(current_modref->ldr.FullDllName.Buffer),
                      (void *)thunk_list->u1.Function );
             }
-- 
1.7.5.4




More information about the wine-patches mailing list