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.