bindSymbol

Loads a symbol from a shared library and assigns it to a caller-supplied pointer.

@nogc nothrow
void
bindSymbol
(,
void** ptr
,
const(char)* symbolName
)

Parameters

lib SharedLib

a valid handle to a shared library loaded via the load function.

ptr void**

a pointer to a function or variable pointer whose declaration is appropriate for the symbol being bound (it is up to the caller to verify the types match).

symbolName const(char)*

the name of the symbol to bind.

Meta