3

我试图用我自己的版本即时替换 Delphi 内置函数。

function ShortCutToTextOverride(ShortCut: TShortCut): string;
begin
  if SomeCondition then
    Result := Menus.ShortCutToText // after patching the pointer equals ShortCutToTextOverride
  else
  begin
    // My own code goes here
  end;
end;

FastcodeAddressPatch(@Menus.ShortCutToText, @ShortCutToTextOverride);

打补丁后,原来的功能就不能用了。无论如何都可以访问它吗?

4

1 回答 1

6

恐怕不会:第一个字节被跳转到新函数所覆盖。

您可以使用 KOLDetours.pas:它返回指向蹦床的指针(原来的前几个字节被绕道覆盖)。 http://code.google.com/p/asmprofiler/source/browse/trunk/SRC/KOLDetours.pas

例如:

type
  TNowFunction = function:TDatetime;
var
  OrgNow: TNowFunction;
function NowExact: TDatetime;
begin
  //exact time using QueryPerformanceCounter
end; 

initialization
  OrgNow := KOLDetours.InterceptCreate(@Now, @NowExact);
  Now()     -> executes NowExact() 
  OrgNow()  -> executes original Now() before the hook 
于 2012-05-15T09:32:31.890 回答