New winetest skipping test for nonexistent dll's

2007-08-01 Thread Paul Vriens
Hi, I've been busy trying to come up with a solution and attached you will find 2 patches. One for 'winetest that will make sure we have specific output for dll's that are not on the system. I have made the output as close to normal test output as possible, so we don't have to patch dissect

Re: New winetest skipping test for nonexistent dll's

2007-08-01 Thread Jacek Caban
Hi Paul, Paul Vriens wrote: + +dll = LoadLibrary(dllname); +if (!dll) { I think it would be better to call LoadLibraryEx(dllname, LOAD_LIBRARY_AS_DATA_FILE) here to avoid executing DllMain code. Jacek