Componentes.Terceros.RemObj.../internal/5.0.23.613/1/Data Abstract for Delphi/Samples/Fetch/FetchServer.dpr
david 472097efe5 - Eliminadas las librerías para Delphi 6 (Dcu\D6) en RO y DA.
- Recompilación de todos los paquetes de RO para poner RemObjects_Core_D10 como paquete de runtime/designtime.

git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.RemObjects@5 b6239004-a887-0f4b-9937-50029ccdca16
2007-09-10 11:08:08 +00:00

25 lines
760 B
ObjectPascal

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.