On Thu, 27 Oct 2005 22:19, Marcus Meissner wrote:
dlopen() is possible from within a WINE context.
I don't believe this is true. LoadLibrary does a bunch of stuff dlopen won't - resolving imports, such as loading dependent DLLs and calling DLLEntry. While you can call dlopen, you must also call LoadLibrary either before or immediately after to make sure all this stuff is sorted out.