What is the easiest and safest way to call a function from a shared library / dll? I am mostly interested in doing this on linux, but it would be better if there were a plat
On Linux you need to use dlsym. See an example at the end of the page. On Window: GetProcAddress.