What\'s the best way for loading a dll from a dll ?
My problem is I can\'t load a dll on process_attach, and I cannot load the dll from the main program, because I d
I suggest you to use delay-loading mechanism. The DLL will be loaded at the fisrt time you call imported function. Moreover you can modify load function and error handling. See Linker Support for Delay-Loaded DLLs for more info.