lazarus/examples/fpdocmanager/FPDocManager.lpr
dodi 78ca2e4f3b DocMgr: updated Imports
git-svn-id: trunk@35330 -
2012-02-12 17:37:50 +00:00

24 lines
497 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, ConfigFile;
{$R *.res}
begin
RequireDerivedFormResource := True;
Application.Initialize;
Application.CreateForm(TMain, Main);
Application.CreateForm(TLogView, LogView);
Application.CreateForm(TUpdateView, UpdateView);
Application.Run;
end.