Is it possible to load a named unexported character from a framework with dlsym?
The symbol that I am trying to import has a name that it refers to within the framework. This is the function I need to call.
I try to do this in the usual way dlopen+ dlsym, but when I try to load a character that is not exported, it dlsymreturns a NULL pointer .
source
share