Componentes.Terceros.RemObj.../internal/6.0.43.801/1/RemObjects Samples/RemObjects SDK for Delphi/Extended File Transfer/ExtendedFileTransferClient.dpr
2010-01-29 16:17:43 +00:00

17 lines
370 B
ObjectPascal

program ExtendedFileTransferClient;
uses
uROComInit,
Forms,
fClientForm in 'fClientForm.pas' {ClientForm},
ExtendedFileTransferLibrary_Intf in 'ExtendedFileTransferLibrary_Intf.pas',
DownloadThread in 'DownloadThread.pas';
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TClientForm, ClientForm);
Application.Run;
end.