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.