Componentes.Terceros.RemObj.../internal/6.0.43.801/1/RemObjects Samples/RemObjects SDK for Delphi/Super TCP Channel Chat/iPhonePairingServer.dpr
2010-01-29 16:17:43 +00:00

33 lines
1.0 KiB
ObjectPascal

program iPhonePairingServer;
{#ROGEN:PairingLibrary.rodl} // RemObjects: Careful, do not remove!
uses
uROComInit,
uROComboService,
Forms,
fServerDataModule in 'fServerDataModule.pas' {ServerDataModule: TDataModule},
fServerForm in 'fServerForm.pas' {ServerForm},
ApprovedClientsStorage in 'ApprovedClientsStorage.pas',
PairingStatus in 'PairingStatus.pas',
PairingLibrary_Intf in 'PairingLibrary_Intf.pas',
PairingLibrary_Invk in 'PairingLibrary_Invk.pas',
PairingService_Impl in 'PairingService_Impl.pas' {PairingService: TRORemoteDataModule},
TestService_Impl in 'TestService_Impl.pas' {TestService: TRORemoteDataModule};
{$R *.res}
{$R RODLFile.res}
begin
if ROStartService('OSXSyncServer', 'OSXSyncServer') then begin
ROService.CreateForm(TServerDataModule, ServerDataModule);
ROService.Run;
Exit;
end;
Application.Initialize;
Application.CreateForm(TServerDataModule, ServerDataModule);
Application.CreateForm(TServerForm, ServerForm);
Application.Run;
end.