Files
lazarus-ccr/components/fpspreadsheet/examples/fpsspeedtest/fpsspeedtest.pas

23 lines
368 B
ObjectPascal
Raw Normal View History

program fpsspeedtest;
{$mode objfpc}{$H+}
uses
// heaptrc,
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
Interfaces, // this includes the LCL widgetset
Forms, laz_fpspreadsheet,
mainform;
{$R *.res}
begin
RequireDerivedFormResource := True;
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.