MissingSymbolCallback

The MissingSymbolCallback allows the app to handle the case of missing symbols. By default, a SharedLibSymbolLoadException is thrown. However, if a the app determines that particular symbol is not needed, the callback can return true. This will cause the shared library to continue loading. Returning false will cause the exception to be thrown.

alias MissingSymbolCallback = bool function(string libName, string symbolName)

Meta