15 lines
358 B
ObjectPascal
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.
|