program FetchServer; {#ROGEN:FetchLibrary.RODL} // RemObjects SDK: Careful, do not remove! uses uROComInit, uROComboService, Forms, FetchServerMain in 'FetchServerMain.pas' {FetchServerMainForm}, FetchServerData in 'FetchServerData.pas' {FetchServerDataModule: TDataModule}, FetchLibrary_Intf in 'FetchLibrary_Intf.pas', FetchLibrary_Invk in 'FetchLibrary_Invk.pas', FetchService_Impl in 'FetchService_Impl.pas' {FetchService: TDataAbstractService}; {$R *.res} {$R RODLFile.res} begin Application.Initialize; Application.Title := 'Fetch Server'; Application.CreateForm(TFetchServerDataModule, FetchServerDataModule); Application.CreateForm(TFetchServerMainForm, FetchServerMainForm); Application.Run; end.