FastReport_2022_VCL/Demos/Dll/CALLDLL.DPR
2024-01-01 16:13:08 +01:00

14 lines
193 B
Plaintext

program CallDLL;
uses
Forms,
TestDLL in 'TestDLL.pas' {frmCallDLL};
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TfrmCallDLL, frmCallDLL);
Application.Run;
end.