IonicWind Software

Aurora Compiler => General Discussion => Topic started by: Bruce Peaslee on January 08, 2007, 10:15:20 AM

Title: Un-LoadLibrary?
Post by: Bruce Peaslee on January 08, 2007, 10:15:20 AM
When you load a DLL with LoadLibrary, do you have to unload it or does it just unload itself when the program ends?
Title: Re: Un-LoadLibrary?
Post by: Ionic Wind Support Team on January 08, 2007, 10:17:31 AM
It will unload itself when the program ends.  You can manually unload it, with the API function FreeLibrary, if you have need to move or delete the DLL. 
Title: Re: Un-LoadLibrary?
Post by: Bruce Peaslee on January 08, 2007, 10:25:34 AM
Good.