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

📄 dcdebug.pas

📁 这是个反向工程delphi的程序的全部源代码.能分析几乎所有的结构 Revendepro is a program to reverse engineer Delphi program. Reven
💻 PAS
字号:
unit dcDebug;

interface

uses
  Dialogs;

procedure SendDebugEx(const Msg: String; MType:TMsgDlgType);
procedure SendDebug(const Msg: String);

implementation

uses
  {$IFDEF DebugView}MainForm,{$ENDIF}
   SysUtils, Forms, StatusForm, Controls;

{ SendDebug }

procedure SendDebugEx(const Msg: String; MType:TMsgDlgType);
begin
  if MType = mtError then
  begin
    SendDebug('***************' + Msg);
    if MessageDlg('Error debug string: ' + Msg, mtError, [mbIgnore, mbAbort], 0) = mrAbort then
      raise Exception.Create('Error debug string: ' + Msg);
  end
  else
    SendDebug(Msg);
end;

procedure SendDebug(const Msg: String);
begin
  DecompThread.AddDebug(Msg);
end;

end.

⌨️ 快捷键说明

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