⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 phunter.dpr

📁 多种检测隐藏进程的源代码 驱动采用C++编写 主程序采用Delphi编写
💻 DPR
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -