lazarus/examples/fpdocmanager/FPDocManager.lpr
dodi fd406b79ea DocMgr: added documentation
git-svn-id: trunk@34710 -
2012-01-11 13:48:51 +00:00

25 lines
534 B
ObjectPascal

program FPDocManager;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
Interfaces, // this includes the LCL widgetset
Forms, 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.