Is it possible to dynamically load a @safe function from a shared library ?

Mike Parker aldacron at gmail.com
Fri Mar 13 16:04:06 UTC 2020


On Friday, 13 March 2020 at 15:16:06 UTC, wjoe wrote:

>    bindSymbol(&apiVersion, "VersionOfAPI");
> }
>

>
> Is it possible to convince the compiler to look the other way 
> while binding @safe functions from the plugin ?

It probably has nothing to do with @safe, but is because of the 
void**.

bindSymbol(cast(void**)&apiVersion, "VersionOfAPI");



More information about the Digitalmars-d-learn mailing list