SharedLib.getSymbol

Obtains the address of a symbol within the shared library

class SharedLib
void*
getSymbol
(
const(char)* name
)

Parameters

name const(char)*

The name of the symbol; must be a null-terminated C string

Return Value

Type: void*

A pointer to the symbol or throws SharedLibException if it's not present in the library.

Meta