Componentes.Terceros.RemObj.../internal/6.0.43.801/1/RemObjects Samples/RemObjects SDK for Delphi/HTTP Chat/HTTPChatServer.dpr
2010-01-29 16:17:43 +00:00

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.