dynamically loadable libraries

I need to develop libraries that can be loaded at runtime. However, I need
each user of the library to have their own unique copy so they can config
the library as needed for their purposes. So it seems that I can’t use a
shared library since each user would share a single copy of the library. How
can I do this?

Only code is shared - data is not, so the configuration would
be user-specific.

Chris Rose <rose_chris@excite.com> wrote:

I need to develop libraries that can be loaded at runtime. However, I need
each user of the library to have their own unique copy so they can config
the library as needed for their purposes. So it seems that I can’t use a
shared library since each user would share a single copy of the library. How
can I do this?


cburgess@qnx.com