Open a library to use
Source position: exec.pas line 2051
function OpenLibrary( |
libname: PChar; |
libver: Cardinal |
):Pointer; |
libname |
|
The name of the library to open |
A library pointer for a successful open, else nil
This function returns a pointer to a library that was previously installed into the system. If the requested library is exists, and if the library version is greater than or equal to the requested version, then the open will succeed.
The library may exist in memory, or on disk; this is transparent to the OpenLibrary caller. Only Processes are allowed to call OpenLibrary (since OpenLibrary may in turn call dos.library).
A full path name for the library name is legitimate. For example "wp:libs/wp.library". This allows the use of custom libraries without requiring the user to copy the library into the system's LIBS: directory.
|
Close access to library |