sshserverdemo.dpr
来自「著名的SecureBlackBox控件完整源码」· DPR 代码 · 共 31 行
DPR
31 行
program SSHServerDemo;
uses
Forms,
MainForm in 'MainForm.pas' {frmMain},
ConnPropsForm in 'ConnPropsForm.pas' {frmConnProps},
AuthSettingsForm in 'AuthSettingsForm.pas' {frmAuthSettings},
DemoSettings in 'DemoSettings.pas',
UserSettingsForm in 'UserSettingsForm.pas' {frmUserSettings},
SetPasswordForm in 'SetPasswordForm.pas' {frmSetPassword},
SetPublicKeyForm in 'SetPublicKeyForm.pas' {frmSetPublicKey},
ServerThread in 'ServerThread.pas',
ServerSettingsForm in 'ServerSettingsForm.pas' {frmServerSettings},
AboutForm in 'AboutForm.pas' {frmAbout},
ServerForwardingThread in 'ServerForwardingThread.pas';
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TfrmMain, frmMain);
Application.CreateForm(TfrmConnProps, frmConnProps);
Application.CreateForm(TfrmAuthSettings, frmAuthSettings);
Application.CreateForm(TfrmUserSettings, frmUserSettings);
Application.CreateForm(TfrmSetPassword, frmSetPassword);
Application.CreateForm(TfrmSetPublicKey, frmSetPublicKey);
Application.CreateForm(TfrmServerSettings, frmServerSettings);
Application.CreateForm(TfrmAbout, frmAbout);
Application.Run;
end.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?