Componentes.Terceros.RemObj.../internal/5.0.24.615/1/RemObjects SDK for Delphi/Samples/Super TCP Channel Chat/SuperTCPChannelChat_Client.dpr

15 lines
358 B
ObjectPascal

program SuperTCPChannelChat_Client;
uses
uROComInit,
Forms,
SuperTCPChannelChat_ClientMain in 'SuperTCPChannelChat_ClientMain.pas' {SuperTCPChannelChat_ClientMainForm};
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TSuperTCPChannelChat_ClientMainForm, SuperTCPChannelChat_ClientMainForm);
Application.Run;
end.