mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-05 23:53:29 +02:00
23 lines
460 B
ObjectPascal
23 lines
460 B
ObjectPascal
program cdcontrolstest;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
{$IFDEF UNIX}{$IFDEF UseCThreads}
|
|
cthreads,
|
|
{$ENDIF}{$ENDIF}
|
|
Interfaces, // this includes the LCL widgetset
|
|
Forms, mainform, toolbartest
|
|
{ you can add units after this };
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
RequireDerivedFormResource:=True;
|
|
Application.Initialize;
|
|
Application.CreateForm(TformCDControlsTest, formCDControlsTest);
|
|
Application.CreateForm(TFormToolBar, FormToolBar);
|
|
Application.Run;
|
|
end.
|
|
|