Is it possible to load a named unexported symbol from a framework using dlsym
?
The symbol I'm trying to import has a name by which it is referred to within the framework. It is a function I need to call.
I'm trying to do it the usual dlopen
+ dlsym
way, but when I try to load a symbol that isn't exported, dlsym
returns a NULL pointer.