I have MFC forms program that calls the API inside the DLL and this DLL has both constructor and destructor. However these constructor and destructor are not exportable which means my MFC forms cannot call t hem. So if I exit out the MFC program, is that when DLL destructor gets called? can I choose when to call DLL destructor?
thanks.