RE: [GD-Windows] DLL initialization (was: Loading new DLLs on old Windows)
Brought to you by:
vexxed72
From: Jon W. <hp...@mi...> - 2004-02-16 16:36:13
|
> There aren't many reasons why _DllMainCRTStartup (the function called before > DllMain) would fail, but a few examples would be: Another would be if the "subsystem" version of the DLL, or one of the DLLs that it's referencing, is greater than the version of Windows you're running on. For Windows 98/ME, the "subsystem" version must be 4; on 2k/XP it can be 5. (Didn't we discuss this just recently?) Note that I'd suspect the runtime DLLs (version 71) before I'd suspect the actual DLL you built yourself. You can check the subsystem version using DEPENDS.EXE that comes with Visual Studio. Cheers, / h+ |