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

📄 dcinterfaces.pas

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

interface

uses
  PEFileClass;

type
  IdcUnit = interface;

  { IdcItem }

  TDCItemType = (itProc, itUnit, itClass, itTypeInfo);
  
  IdcDCItem = interface(IUnknown)
    ['{502BD0A0-561F-11D3-B62D-D0224AC10000}']
    function GetPEFileClass: TPEFileClass;
    function GetDCItemType: TDCItemType;
    // properties    
    property PEFile: TPEFileClass read GetPEFileClass;
    property DCItemType: TDCItemType read GetDCItemType;
  end;

  { IdcSection Item }

  IdcSectionItem = interface(IdcDCItem)
    ['{502BD0A1-561F-11D3-B62D-D0224AC10000}']
    function GetAUnit: IdcUnit;
    function GetAddress: PChar;
    function GetSize: Integer;
    // properties
    property AUnit: IdcUnit read GetAUnit;
    property Address: PChar read GetAddress;
    property Size: Integer read GetSize;
  end;

  { IdcUnit }

  IdcUnit = interface(IdcDCItem)
    ['{502BD0A2-561F-11D3-B62D-D0224AC10000}']
  end;

implementation

end.
 

⌨️ 快捷键说明

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