WinLoadLibrary: Difference between revisions
Appearance
No edit summary |
|||
Line 20: | Line 20: | ||
INCL_WINLOAD | INCL_WINLOAD | ||
=== Calling | === Calling Convention === | ||
[[Cdecl32]] | [[Cdecl32]] | ||
Revision as of 19:29, 18 January 2017
WinLoadLibrary
- WinLoadLibrary(anchorBlockHndl, libraryName)
- Makes the named library available.
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"); ...