LMS-2_ReportAPI/lmsreport.lpr
Алексей Заблоцкий ac9caf456f buffer-fix
2023-10-24 11:00:40 +03:00

29 lines
657 B
ObjectPascal

program lmsreport;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}
cthreads,
{$ENDIF}
{$IFDEF HASAMIGA}
athreads,
{$ENDIF}
Interfaces, // this includes the LCL widgetset
sysutils, Forms, abbrevia, lnetbase,commandcol,baseconnection, MainTcpServer, tcpthreadhelper,
reportDMUnit, ConnectionsDmUnit, cgiDM, xpAccessUnit, extTypes, tcpserver,
tcpClient, cgiReport, cgiCommand, fr_utils, applicantresult,
allreportsunit
{ you can add units after this };
{$R *.res}
begin
RequireDerivedFormResource:=True;
Application.Scaled:=True;
Application.Initialize;
Application.CreateForm(TCGIServerGUI, CGIServerGUI);
Application.Run;
end.