git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.RemObjects@68 b6239004-a887-0f4b-9937-50029ccdca16
21 lines
639 B
ObjectPascal
21 lines
639 B
ObjectPascal
program ExtendedFileTransferServer;
|
|
|
|
{#ROGEN:ExtendedFileTransferLibrary.rodl} // RemObjects: Careful, do not remove!
|
|
|
|
uses
|
|
uROComInit,
|
|
Forms,
|
|
fServerForm in 'fServerForm.pas' {ServerForm},
|
|
ExtendedFileTransferLibrary_Intf in 'ExtendedFileTransferLibrary_Intf.pas',
|
|
ExtendedFileTransferLibrary_Invk in 'ExtendedFileTransferLibrary_Invk.pas',
|
|
ExtendedFileTransferService_Impl in 'ExtendedFileTransferService_Impl.pas' {ExtendedFileTransferService: TRORemoteDataModule};
|
|
|
|
{$R *.res}
|
|
{$R RODLFile.res}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.CreateForm(TServerForm, ServerForm);
|
|
Application.Run;
|
|
end.
|