mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-07 19:38:14 +02:00
24 lines
406 B
ObjectPascal
24 lines
406 B
ObjectPascal
|
|
{$R *.res}
|
|
|
|
program lazdialogs_test;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
{$IFDEF UNIX}{$IFDEF UseCThreads}
|
|
cthreads,
|
|
{$ENDIF}{$ENDIF}
|
|
Interfaces, // this includes the LCL widgetset
|
|
Forms, lazdialogs_form
|
|
{ you can add units after this };
|
|
|
|
begin
|
|
// RequireDerivedFormResource := True;
|
|
Application.Title:='';
|
|
Application.Initialize;
|
|
Application.CreateForm(TForm1, Form1);
|
|
Application.Run;
|
|
end.
|
|
|