1.15.1. dynlolib_LoadLibrary

[<<<] [>>>]

This function loads a library and returns a pointer that can be used in other functions referencing the loaded library.

void *dynlolib_LoadLibrary(
  char *pszLibraryFile
);
The argument pszLibraryFile is the ZCHAR file name.

The file name is either absolute or relative. When a relative file name is specified the directories searched may be different on different operating systems.


[<<<] [>>>]