Componentes.Terceros.jvcl/official/3.00/examples/JvProfiler32/ProfilerDemo.dpr

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.