Componentes.Terceros.jvcl/official/3.39/examples/JvProfiler32/ProfilerDemo.dpr
2010-01-18 16:55:50 +00:00

14 lines
259 B
ObjectPascal

program ProfilerDemo;
uses
Forms,
Profiler32MainFormU in 'Profiler32MainFormU.pas' {Profiler32MainForm};
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TProfiler32MainForm, Profiler32MainForm);
Application.Run;
end.