Loading a DLL that calls functions in the DLL that loaded it?

Yes, it will work. DLL B can safely call LoadLibrary on DLL A to get the instance handle for the GetProcAddress call the function it needs. The module loader will figure out that DLL A is already in the process memory and will just return an instance handle for it to DLL B.

And more to say that make your dependencies clear, extract the shared functionality and move it to another DLL, don't make a loop in dependencies graph.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions