DyLibFree
Unloads a dynamic link library from memory
DyLibFree( library )
library
DyLibFree is used to release at runtime libraries previously linked to your program with DyLibLoad. The argument is the handle to the library returned by DyLibLoad.
Syntax
Usage
DyLibFree( library )
Parameters
library
The handle of a library to unload.
Description
DyLibFree is used to release at runtime libraries previously linked to your program with DyLibLoad. The argument is the handle to the library returned by DyLibLoad.
Example
Platform Differences
- Dynamic link libraries are not available in DOS, as the OS doesn't support them.
Dialect Differences
- Not available in the -lang qb dialect unless referenced with the alias __Dylibfree.
Differences from QB
- New to FreeBASIC
See also