Componentes.Terceros.FastRe.../internal/4.2/1/Demos/Dll/CALLDLL.DPR

14 lines
206 B
Plaintext
Raw Normal View History

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