Added support for path wildcards of the form "*dllname" in load order
specifications.
Only use wildcard entry for dlls that don't specify an explicit path.
Removed the old DllOverrides syntax support.
Misc cleanups and optimizations.
diff --git a/loader/module.c b/loader/module.c
index 52e4f7e..f3a9a64 100644
--- a/loader/module.c
+++ b/loader/module.c
@@ -1425,6 +1425,10 @@
MODULE_modref_list = wm->next;
TRACE(" unloading %s\n", wm->filename);
+ if (!TRACE_ON(module))
+ TRACE_(loaddll)("Unloaded module '%s' : %s\n", wm->filename,
+ wm->dlhandle ? "builtin" : "native" );
+
if (wm->dlhandle) wine_dll_unload( wm->dlhandle );
else UnmapViewOfFile( (LPVOID)wm->module );
FreeLibrary16(wm->hDummyMod);