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.
|