LoadLibrary()

<< Click to Display Table of Contents >>

Navigation:  Explain™ Control Language  > Library Routines > Define classes and functions >

LoadLibrary()

Description

Dynamically load a DLL at run-time.

 

This is the equivalent to the statement:

 

library Result = LibraryName

 

Type

REGULAR FUNCTION

 

Usage

Result = LoadLibrary(LibraryName)

 

LibraryName

STRING

Library file name. System searches:

1.current directory

2.Windows® directory

3.Windows system directory

4.Gamry Framework™ program directory

5.PATH directories

Result

LIBRARY

This is the library variable. It must be declared GLOBAL to be accessible in other functions.

 

Related Topics