Is it possible to mimic the loadlibrary function? I want to load a library from a BLOB field without first writing it to a temporary file, and I need a solution which is not dependent on specific version of delphi compiler or windows, and does not trigger antivirus software.
Is it possible to mimic the loadlibrary function? I want to load a library
Share
dzlib contains a ready made object for reading a dll from a resource into memory and using it without ever saving it to disc:
This is the main file …
http://sourceforge.net/p/dzlib/code/147/tree/dzlib/trunk/src/u_dzResourceDllLoader.pas
.. but it needs other files from the same repository.