Componentes.Terceros.RemObj.../official/5.0.24.615/RemObjects SDK for Delphi/Samples/HTTP Chat/HTTPChatServer.dpr

22 lines
622 B
ObjectPascal

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.