wilton/dyload
Load native shared library.
More...
Functions | |
| Undefined | dyload (Object options, Function|Undefined callback) |
| Load native shared library. | |
This module allows to load native shared libraries that provide additional wiltoncall functions.
Library loading process is OS-specific. Function wilton_module_init is called on the native library immediately after load. This function must be available as a "public symbol" and should use wiltoncall_register (C API) or wilton::support::register_wiltoncall (C++ API) to register native functions to be used from JavaScript through wiltoncall module.
If library with this name is already loaded in current process, this function will do nothing.
Usage example:
| Undefined dyload::dyload | ( | Object | options, |
| Function|Undefined | callback | ||
| ) |
Loads native shared library at the specified path and calls wilton_module_init function on the loaded lib.
| options | Object configuration object, see possible options below |
| callback | Function|Undefined callback to receive result or error |
UndefinedOptions
String "logical" library name, will be converted to platform-specific file name before loadString|Undefined directory to load library from, default value: current executable directory
1.8.1.2