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

📄 decompiler.pas

📁 dede 的源代码 3.10b
💻 PAS
字号:
unit Decompiler;

interface


const
   vvLocal = 1; vvGlobal = 2; vvParameter = 3;

type TVarList = record
   VarName : string;
   VarType : integer;
   VarSize : integer;
   VarMode : byte;
   VarVision : byte;
end;


type TVariables = class

   private
      { Private declarations }
      VarList : array of TVarList;
      VarCount : integer;
   public
     { Public declarations }
      constructor Create;
      destructor Destroy; override;
      procedure AddVar(Variable : TVarList);
      procedure RenameVar(const OldName : string; const NewName : string);
      procedure DeleteVar(const VarName : string);
      function FindVar(const VarName : string) : TVarList;
   end;

type TExec = class
   private
      
   public

   end;


implementation


constructor TVariables.Create;
begin
  VarCount := 0;
  SetLength(VarList, 0);
end;

destructor TVariables.Destroy;
begin
  SetLength(VarList, 0);
end;


procedure TVariables.AddVar(Variable : TVarList);
begin
//
end;
procedure TVariables.RenameVar(const OldName : string; const NewName : string);
begin
//
end;
procedure TVariables.DeleteVar(const VarName : string);
begin
//
end;
function TVariables.FindVar(const VarName : string) : TVarList;
begin
//
end;


end.

⌨️ 快捷键说明

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