phunter.dpr

来自「进程获取工具。process hunter」· DPR 代码 · 共 24 行

DPR
24
字号
program phunter;


uses
  windows, Unit1, Forms; 

{$R *.res}

var
 hWindow: dword;

begin
 hWindow := FindWindow('TForm1', 'Process Hunter (Hidden processes detector) by Ms-Rem');
 if hWindow > 0 then
  begin
    SetForegroundWindow(hWindow);
    ExitProcess(0);
  end;
 Application.Initialize;
 Application.Title := 'Process Hunter';
 Application.CreateForm(TForm1, Form1);
 Application.Run;
end.

⌨️ 快捷键说明

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