我尝试用我自己的版本即时替换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);
修补后,无法再访问原始功能。 无论如何都可以访问它?
答案 0 :(得分: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