WinDeleteLibrary: Difference between revisions
Appearance
No edit summary |
|||
Line 17: | Line 17: | ||
INCL_WINLOAD | INCL_WINLOAD | ||
=== Calling | === Calling Convention === | ||
[[Cdecl32]] | [[Cdecl32]] | ||
Revision as of 19:28, 18 January 2017
WinDeleteLibrary
- WinDeleteLibrary(anchorBlockHndl, libraryHndl)
- Removes the library from access that had been allocated by a previous call to WinLoadLibrary.
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);