http://bugs.winehq.org/show_bug.cgi?id=20098
--- Comment #16 from red-ray ray@pobox.co.uk 2009-09-25 11:50:18 --- (In reply to comment #15)
OK, we need a general solution that will work for ALL of these and will not be an excessive burdon on Wine. How about having Wine export:
void *wine_dlopen(const char *filename, int flag); char *wine_dlerror(void); void *wine_dlsym(void *handle, const char *symbol); int Wine_dlclose(void *handle);
That way all the native *nix functions would be simply available to any Windows application that decided to use then.