lazarus/examples/gridexamples/title_images/title_image_demo.lpr
2013-09-29 08:49:16 +00:00

21 lines
330 B
ObjectPascal

program title_image_demo;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
Interfaces, // this includes the LCL widgetset
Forms
{ you can add units after this }, main;
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.