mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-10 13:22:40 +02:00
20 lines
341 B
ObjectPascal
20 lines
341 B
ObjectPascal
program project1;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
{$IFDEF UNIX}{$IFDEF UseCThreads}
|
|
cthreads,
|
|
{$ENDIF}{$ENDIF}
|
|
Interfaces, // this includes the LCL widgetset
|
|
Forms, EasyDockMgr, fEditorSite, fEditBook, fClientForm;
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.CreateForm(TEditorSite, EditorSite);
|
|
Application.Run;
|
|
end.
|
|
|