This is to expand my comment further to David's answer:
DLL side:
- Add in the DLL the Init procedure
- Export it.
- Add needed type/var declarations as needed
Snippet code:
library TheDLL;
...
var
OwnerAPP: HMODULE; // To be initialized by a call of the exported procedure Init from the EXE
...
type
TTestCallfromExe = procedure(f_Text: PAnsiChar); stdcall;
var
OwnerAPP: LongInt;
l_TestCallfromExe: TTestCallfromExe;
procedure Init(Owner: HMODULE);
begin
OwnerAPP := Owner;
end;
...
exports
Init, // This is it and the others exports follow
...
Call to TestCallfromExe is carried out like usual call to any Dll's exported function/procedure. A call can be made in the body of a Dll's exported function according the OP's requirements so long as OwnerAPP was correctly initialized.
EXE side:
Export every procedure/function (to be called from DLL) as needed, of course you should implement each of them.
program TheEXE;
uses
...
MyExportImplementation; // Refence to implementatio unit
...
exports
TestCallfromExe, // This is it
...
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.
Sample implementation details:
unit MyExportImplementation;
interface
...
procedure TestCallfromExe(f_Text: PAnsiChar); stdcall;
implementation
...
procedure TestCallfromExe(f_Text: PAnsiChar); stdcall;
begin
MessageBoxA(0, f_Text, 'Exe Dialog Ansi (stdcall)', 0);
end;
...
end.
Putting it all together:
This is based on the DemoDLL (from BTMemory) sample, to implement for instance in the MainForm unit of the TheEXE.dpr project:
procedure TForm1.BtnCAllClick(Sender: TObject);
var
l_Init: procedure(Owner: HMODULE);
begin
m_DllHandle := LoadLibrary('TheDLL.dll');
try
if m_DllHandle = 0 then
Abort;
@l_Init := GetProcAddress(m_DllHandle, 'Init'); // <<<
if @l_Init = nil then
Abort;
// Fetch the remainding exported function(s)/procedure(s) adresses
l_Init(HInstance); // <<< Hand EXE's HInstance over to the DLL
// Call exported function(s)/procedure(s) accordingly
except
Showmessage('An error occured while loading the dll');
end;
if m_DllHandle <> 0 then
FreeLibrary(m_DllHandle)
end;
Nota Bene:
I tested it also with BTMemory and it works.