LMS-2_ReportAPI/lmsreport.lpr
2023-10-19 13:08:34 +03:00

28 lines
608 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, MainTcpServer, tcpthreadhelper, reportDMUnit,
ConnectionsDmUnit, cgiDM, xpAccessUnit, extTypes, tcpserver, tcpClient,
cgiReport, cgiCommand, fr_utils, baseconnection
{ you can add units after this };
{$R *.res}
begin
RequireDerivedFormResource:=True;
Application.Scaled:=True;
Application.Initialize;
Application.CreateForm(TCGIServerGUI, CGIServerGUI);
Application.Run;
end.