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

22 lines
613 B
ObjectPascal

program Server;
{#ROGEN:BonjourDiscoverableLibrary.rodl} // RemObjects: Careful, do not remove!
uses
uROComInit,
Forms,
fServerForm in 'fServerForm.pas' {ServerForm},
BonjourDiscoverableService_Impl in 'BonjourDiscoverableService_Impl.pas',
BonjourDiscoverableLibrary_Invk in 'BonjourDiscoverableLibrary_Invk.pas',
BonjourDiscoverableLibrary_Intf in 'BonjourDiscoverableLibrary_Intf.pas';
{$R *.res}
{$R RODLFile.res}
begin
Application.Initialize;
Application.Title := 'Bonjour Discovery Server';
Application.CreateForm(TServerForm, ServerForm);
Application.Run;
end.