mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-06-22 17:28:37 +02:00
25 lines
543 B
ObjectPascal
25 lines
543 B
ObjectPascal
program FPDocManager;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
{$IFDEF UNIX}{$IFDEF UseCThreads}
|
|
cthreads,
|
|
{$ENDIF}{$ENDIF}
|
|
Interfaces, // this includes the LCL widgetset
|
|
Forms, dw_HTML, umakeskel, fMain, fConfig, uManager, fLogView,
|
|
fUpdateView, ulpk;
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
RequireDerivedFormResource := True;
|
|
Application.Initialize;
|
|
Application.CreateForm(TMain, Main);
|
|
Application.CreateForm(TCfgWizard, CfgWizard);
|
|
Application.CreateForm(TLogView, LogView);
|
|
Application.CreateForm(TUpdateView, UpdateView);
|
|
Application.Run;
|
|
end.
|
|
|