Componentes.Terceros.FastRe.../official/4.7.71/Demos/Dll/CALLDLL.DPR
2009-02-27 12:41:18 +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.