LMS-2_ReportAPI/lms_cgi_server.lpr
2025-07-03 10:45:31 +03:00

21 lines
449 B
ObjectPascal

Program lms_cgi_server;
Uses
{$IFDEF UNIX}
cthreads,
{$ENDIF}
{$IFDEF HASAMIGA}
athreads,
{$ENDIF}
Interfaces, // this includes the LCL widgetset
sysutils,
DaemonApp, lazdaemonapp, cgi_mapper, cgi_daemon, tcpthreadhelper,
ConnectionsDmUnit, baseconnection, tcpserver, cgiReport, cgiDM, extTypes,
reportDMUnit, abbrevia, lnetbase, applicantlist
{ add your units here };
begin
Application.Initialize;
Application.Run;
end.