You've already forked lazarus-ccr
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@6859 8e941d3f-bd1b-0410-a28a-d453659cc2b4
16 lines
288 B
ObjectPascal
16 lines
288 B
ObjectPascal
program ProfilerDemo;
|
|
|
|
uses
|
|
Interfaces,
|
|
Forms,
|
|
Profiler32MainFormU in 'Profiler32MainFormU.pas' {Profiler32MainForm};
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Scaled:=True;
|
|
Application.Initialize;
|
|
Application.CreateForm(TProfiler32MainForm, Profiler32MainForm);
|
|
Application.Run;
|
|
end.
|