httpanalyzer.dpr

来自「httpanalyzer, source code for delphi」· DPR 代码 · 共 23 行

DPR
23
字号
program httpanalyzer;

uses
  Forms,
  u_main in 'u_main.pas' {frm_main},
  httpProxyExtend in 'httpProxyExtend.pas',
  proxy1 in 'proxy1.pas',
  proxy2 in 'proxy2.pas',
  mem_utils in 'mem_utils.pas',
  httphelp in 'HttpHelp.pas',
  u_about in 'u_about.pas' {AboutBox},
  saving in 'saving.pas';

{$R *.res}

begin
  Application.Initialize;
  Application.Title := 'HttpAnalyzer';
  Application.CreateForm(Tfrm_main, frm_main);
  Application.CreateForm(TAboutBox, AboutBox);
  Application.Run;
end.

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?