Re: [GD-Windows] DLL initialization (was: Loading new DLLs on old Windows)
Brought to you by:
vexxed72
From: brian s. <pud...@po...> - 2004-02-16 16:01:08
|
On Monday, February 16, 2004, at 01:55 AM, Andras Balogh wrote: > Currently this program only uses one DLL, but I'll create some more > (simple > ones), and see if they work or not. Now I'm pretty sure that I'm using > something in my DLL, that Win98 doesn't support, just doesn't know > what. :) Maybe you should run "dumpbin /imports" on your DLL, and then write some code in your main app to attempt to load each and every one of those imported functions by hand. See which one fails. It's like killing a fly with a rocket launcher, but at this point it seems like you really need to kill that fly :) --brian |