The dlopen prototype: void *dlopen(const char *filename, int flag);
What I need is: void *dlopen(const char *pBufferWithSoContents, int flag);
I don't want to store the library.so in a filesystem. I want to store it in a memory buffer, not in a files system. Anyone know of any solutions I could use?