DyLibFree

Unloads a dynamic link library from memory

Syntax
	KeyPgDeclareDeclare KeyPgSubSub DyLibFree ( KeyPgByvalByVal libhandle KeyPgAsAs KeyPgAnyAny KeyPgPtrPointer )

Usage
	DyLibFree( libhandle )

Parameters
	libhandle
		The handle of a library to unload.

Description
	DyLibFree is used to release at runtime libraries previously linked to 
	your program with KeyPgDylibloadDyLibLoad. The argument is the handle to the library 
	returned by KeyPgDylibloadDyLibLoad.

Example
	See the dynamic loading example on the ProPgSharedLibrariesShared Libraries page.

Platform Differences
	* DOS: see specific ProPgSharedLibrariesDOSShared Libraries - DOS page

Dialect Differences
	* Not available in the CompilerOptlang-lang qb dialect unless referenced with the 
	  alias __Dylibfree.

Differences from QB
	* New to FreeBASIC

See also
	* KeyPgDylibsymbolDyLibSymbol
	* KeyPgDylibloadDyLibLoad
	* KeyPgExportExport

