22 lines
457 B
ObjectPascal
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.
|