WinDeleteLibrary: Difference between revisions
Appearance
mNo edit summary |
|||
Line 1: | Line 1: | ||
Removes the library from access that had been allocated by a previous call to [[WinLoadLibrary]]. | |||
=== Parameters | ==Syntax== | ||
WinDeleteLibrary(anchorBlockHndl, libraryHndl) | |||
== Parameters == | |||
;anchorBlockHndl - [[HAB]] - input : The anchor block handle. | ;anchorBlockHndl - [[HAB]] - input : The anchor block handle. | ||
;libraryHndl - [[HLIB]] - input : The handle of the library. | ;libraryHndl - [[HLIB]] - input : The handle of the library. | ||
== Returns == | |||
This function returns a [[BOOL]] with possible values of: | This function returns a [[BOOL]] with possible values of: | ||
; [[TRUE]] : Library successfully unloaded. | ; [[TRUE]] : Library successfully unloaded. | ||
; [[FALSE]] : Library not successfully unloaded. | ; [[FALSE]] : Library not successfully unloaded. | ||
== Module == | |||
PMMERGE | PMMERGE | ||
== Define (C/C++) == | |||
INCL_WINLOAD | INCL_WINLOAD | ||
== Calling Convention == | |||
[[Cdecl32]] | [[Cdecl32]] | ||
== Example Code == | |||
BOOL rc; | BOOL rc; | ||
HAB hab; | HAB hab; | ||
Line 27: | Line 29: | ||
rc = WinDeleteLibrary (hab, hlib); | rc = WinDeleteLibrary (hab, hlib); | ||
== Related Functions == | |||
*[[WinLoadLibrary]] | *[[WinLoadLibrary]] | ||
*[[WinDeleteProcedure]] | *[[WinDeleteProcedure]] |
Latest revision as of 04:57, 20 May 2018
Removes the library from access that had been allocated by a previous call to WinLoadLibrary.
Syntax
WinDeleteLibrary(anchorBlockHndl, libraryHndl)
Parameters
- anchorBlockHndl - HAB - input
- The anchor block handle.
- libraryHndl - HLIB - input
- The handle of the library.
Returns
This function returns a BOOL with possible values of:
Module
PMMERGE
Define (C/C++)
INCL_WINLOAD
Calling Convention
Example Code
BOOL rc; HAB hab; HLIB hlib; ... rc = WinDeleteLibrary (hab, hlib);