Disable DONT_RESOLVE_DLL_REFERENCES for builtin dlls.

This commit is contained in:
Alexandre Julliard 2001-03-21 03:38:44 +00:00
parent b77afe76b1
commit 671da9f08e
1 changed files with 1 additions and 2 deletions

View File

@ -621,8 +621,7 @@ WINE_MODREF *PE_CreateModule( HMODULE hModule, LPCSTR filename, DWORD flags,
pModule->flags |= NE_FFLAGS_BUILTIN;
wm->flags |= WINE_MODREF_INTERNAL;
}
if ( flags & DONT_RESOLVE_DLL_REFERENCES )
else if ( flags & DONT_RESOLVE_DLL_REFERENCES )
wm->flags |= WINE_MODREF_DONT_RESOLVE_REFS;
wm->find_export = PE_FindExportedFunction;