Componentes.Terceros.RemObj.../internal/6.0.43.801/1/RemObjects Samples/RemObjects SDK for Delphi/BonjourDiscovery/Client.dpr

17 lines
357 B
ObjectPascal
Raw Normal View History

program Client;
uses
uROComInit,
Forms,
fClientForm in 'fClientForm.pas' {ClientForm},
BonjourDiscoverableLibrary_Intf in 'BonjourDiscoverableLibrary_Intf.pas';
{$R *.res}
begin
Application.Initialize;
Application.Title := 'Bonjour Discovery Client';
Application.CreateForm(TClientForm, ClientForm);
Application.Run;
end.