LMS-2_ReportAPI/lms_cgi_server.lpr
2025-07-03 10:37:12 +03:00

22 lines
457 B
ObjectPascal

Program lms_cgi_server;
Uses
{$IFDEF UNIX}
cthreads,
{$ENDIF}
{$IFDEF HASAMIGA}
athreads,
{$ENDIF}
Interfaces, // this includes the LCL widgetset
sysutils,
system,
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.