WinLoadLibrary: Difference between revisions
Appearance
mNo edit summary |
|||
Line 1: | Line 1: | ||
Makes the named library available. | |||
WinLoadLibrary(anchorBlockHndl, libraryName) | |||
=== Parameters === | === Parameters === | ||
; anchorBlockHndl - [[HAB]] - input : The anchor block handle. | ;anchorBlockHndl - [[HAB]] - input : The anchor block handle. | ||
; libraryName - [[PSZ]] - input : The name of the library. | ;libraryName - [[PSZ]] - input : The name of the library. | ||
=== Constants === | === Constants === |
Revision as of 23:31, 29 January 2018
Makes the named library available.
WinLoadLibrary(anchorBlockHndl, libraryName)
Parameters
- anchorBlockHndl - HAB - input
- The anchor block handle.
- libraryName - PSZ - input
- The name of the library.
Constants
None
Returns
This function returns a HLIB with possible values of:
- NULLHANDLE
- A valid library handle.
Module
PMMERGE
Define (C/C++)
INCL_WINLOAD
Calling Convention
Example Code
... HLIB rc; HAB hab; rc = WinLoadLibrary (hab, "someFile.dll"); ...