WinLoadLibrary: Difference between revisions
Appearance
No edit summary |
mNo edit summary |
||
(2 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
Makes the named library available. | |||
== | ==Syntax== | ||
WinLoadLibrary(anchorBlockHndl, libraryName) | |||
=== Constants | == Parameters == | ||
;anchorBlockHndl - [[HAB]] - input : The anchor block handle. | |||
;libraryName - [[PSZ]] - input : The name of the library. | |||
== Constants == | |||
None | None | ||
== Returns == | |||
This function returns a [[HLIB]] with possible values of: | This function returns a [[HLIB]] with possible values of: | ||
* [[NULLHANDLE]] | * [[NULLHANDLE]] | ||
* A valid library handle. | * A valid library handle. | ||
== Module == | |||
PMMERGE | PMMERGE | ||
== Define (C/C++) == | |||
INCL_WINLOAD | INCL_WINLOAD | ||
== Calling Convention == | |||
[[Cdecl32]] | [[Cdecl32]] | ||
== Example Code == | |||
... | ... | ||
[[HLIB]] rc; | [[HLIB]] rc; | ||
Line 30: | Line 32: | ||
... | ... | ||
== Related Functions == | |||
[[WinDeleteLibrary]] | [[WinDeleteLibrary]] | ||
[[WinDeleteProcedure]] | [[WinDeleteProcedure]] |
Latest revision as of 05:13, 20 May 2018
Makes the named library available.
Syntax
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"); ...