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

17 lines
357 B
ObjectPascal

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.