Jump to content

WinLoadLibrary: Difference between revisions

From EDM2
Ak120 (talk | contribs)
mNo edit summary
Line 1: Line 1:
== WinLoadLibrary ==
Makes the named library available.
; WinLoadLibrary(anchorBlockHndl, libraryName) : 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:

Module

PMMERGE

Define (C/C++)

INCL_WINLOAD

Calling Convention

Cdecl32

Example Code

...
HLIB rc;
HAB   hab;
rc = WinLoadLibrary (hab, "someFile.dll");
...

Related Functions

WinDeleteLibrary WinDeleteProcedure WinLoadProcedure