Componentes.Terceros.RemObj.../internal/5.0.24.615/1/RemObjects SDK for Delphi/Samples/Service Discovery/ServiceDiscovery.dpr

15 lines
335 B
ObjectPascal

program ServiceDiscovery;
uses
Forms,
ServiceDiscoveryMain in 'ServiceDiscoveryMain.pas' {ServiceDiscoveryMainForm};
{$R *.res}
begin
Application.Initialize;
Application.Title := 'Service Discovery Sample';
Application.CreateForm(TServiceDiscoveryMainForm, ServiceDiscoveryMainForm);
Application.Run;
end.