17 lines
370 B
ObjectPascal
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.
|