Componentes.Terceros.FastRe.../official/4.8.11/Demos/Dll/CALLDLL.DPR
2009-10-21 13:40:53 +00:00

14 lines
206 B
Plaintext

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