jvcllaz: Add TJvProfiler.

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@6859 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
wp_xxyyzz
2019-04-22 22:51:58 +00:00
parent 1dc7fd8705
commit a908ae901c
11 changed files with 1132 additions and 3 deletions

View File

@ -0,0 +1,15 @@
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.