can someone tell me what the code would be to unload a dll.
This is a discussion on unloading a dll within the C++ Programming forums, part of the General Programming Boards category; can someone tell me what the code would be to unload a dll....
can someone tell me what the code would be to unload a dll.
Code:HINSTANCE hLibrary = LoadLibrary("thedarn.dll"); // Load the DLL FreeLibrary(hLibrary); // Unload the DLL
cool, thank you