git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.jcl@20 c37d764d-f447-7644-a108-883140d013fb
20 lines
430 B
ObjectPascal
20 lines
430 B
ObjectPascal
program ContainerPerformance;
|
|
|
|
{$I jcl.inc}
|
|
|
|
uses
|
|
{$IFDEF MSWINDOWS}
|
|
Forms,
|
|
{$ENDIF MSWINDOWS}
|
|
ContainerPerformanceMain in 'ContainerPerformanceMain.pas' {MainForm},
|
|
ContainerPerformanceTests in 'ContainerPerformanceTests.pas';
|
|
|
|
{$R *.res}
|
|
{$R ..\..\..\..\source\windows\JclCommCtrlAsInvoker.res}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.CreateForm(TMainForm, MainForm);
|
|
Application.Run;
|
|
end.
|