git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.RemObjects@68 b6239004-a887-0f4b-9937-50029ccdca16
33 lines
1.0 KiB
ObjectPascal
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.
|