Santosh Siddheshwar santosh.s@sonata-software.com writes:
Is there any way to specify in config file or any other place, a way to prevent/delay a shared object from being unloaded till the application using it terminates? In dlopen there is a flag RTLD_NODELETE which keeps the loaded shared object in memory even after dlclose is called. The shared object is unloaded only when the app exits. Do we have some way to do this in WINE?
You could always call LoadLibrary one more time to increase the ref count I suppose. What are you trying to do?