hello,
I'd like to load a DLL from a memory buffer. The regular Win32 API function to load DLLs, however, takes a path name. So, I'm looking for resources about this kind of thing, but it has to work both under win32 and unix+wine. There used to be a web page about just this thing, but I lost the link.
Any ideas?
Thanks.
____________________________________________________ Start your day with Yahoo! - make it your home page http://www.yahoo.com/r/hs
Bojan "ÿffff8aernek" sinergitized@yahoo.com writes:
I'd like to load a DLL from a memory buffer. The regular Win32 API function to load DLLs, however, takes a path name. So, I'm looking for resources about this kind of thing, but it has to work both under win32 and unix+wine. There used to be a web page about just this thing, but I lost the link.
Any ideas?
The easiest is to dump the memory buffer to a temp file and load that...