Jump to content

WinLoadLibrary

From EDM2
Revision as of 05:13, 20 May 2018 by Martini (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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:

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