/src/demo/Project1.dpr
Pascal | 19 lines | 15 code | 3 blank | 1 comment | 0 complexity | 3d61ab2d225a650deb69a040b4ee79b8 MD5 | raw file
1program Project1; 2 3uses 4 Forms, 5 Unit3 in 'Unit3.pas' {Form3}, 6 libssh2 in '..\libssh2.pas', 7 libssh2_publickey in '..\libssh2_publickey.pas', 8 libssh2_sftp in '..\libssh2_sftp.pas', 9 uMySFTPClient in '..\comp\uMySFTPClient.pas', 10 Unit4 in 'Unit4.pas' {FrmProgress}; 11 12{$R *.res} 13 14begin 15 Application.Initialize; 16 Application.MainFormOnTaskbar := True; 17 Application.CreateForm(TForm3, Form3); 18 Application.Run; 19end.