program HTTPChatServer; {#ROGEN:HTTPChatLibrary.rodl} // RemObjects: Careful, do not remove! uses uROComInit, Forms, HTTPChatServerMain in 'HTTPChatServerMain.pas' {HTTPChatServerMainForm}, HTTPChatLibrary_Intf in 'HTTPChatLibrary_Intf.pas', HTTPChatLibrary_Invk in 'HTTPChatLibrary_Invk.pas', HTTPChatService_Impl in 'HTTPChatService_Impl.pas' {HTTPChatService: TDARemoteService}; {$R *.res} {$R RODLFile.res} begin Application.Initialize; Application.Title := 'HTTP Chat Server'; Application.CreateForm(THTTPChatServerMainForm, HTTPChatServerMainForm); Application.Run; end.