program ZdechovNET; {$mode delphi}{$H+} uses {$IFDEF UNIX} cthreads, {$ENDIF} UUtils, USqlDatabase, SysUtils, Contnrs, Forms, UUser, UHTTPSessionMySQL, UHTTPSessionFile, UCommon, UHTTPServer, UHTTPServerTCP, UHTTPServerCGI, UTCPServer, UPool, UMemoryStreamEx, UMIMEType, UPageList, Interfaces, UCore, UWebApp; begin with Application do begin Initialize; Core := TCore.Create(Application); Core.Run; Run; end; end.