Hello! I need here some help
I have added
dll file to my program`s resource and I have this function:
function Test(prog: HWND): Boolean; stdcall; external 'mydll.dll' name 'DoSomethink';
so I need load
dll file to this function from TResourceSream (without extractint from exe file).
I could be like this:
function Test(prog: HWND): Boolean; stdcall; external 'mydll_from_TResourceSream.dll' name 'DoSomethink';
How can I do this?
Thank`s!