在 Delphi debugAPI 中,有几个对 a 的引用,FrameIndex
例如:
unit DebugAPI;
interface
type
IOTADebugger = interface(IInterface)
function CanToggleBreakpointOnFrame(FrameIndex: Integer): Boolean;
function GetSupportedRunParametersCommands: TRunParametersCommands;
function CanSetNextStatement(const Filename: string;
LineNumber: Integer): Boolean;
procedure ProcessDebugEvents;
function FrameHasDebugInfo(FrameIndex: Integer): Boolean;
function GetDisplayableDebuggerName: string;
function GetFrameBreakpoint(FrameIndex: Integer): IOTABreakpoint;
procedure ToggleBreakpointOnFrame(FrameIndex: Integer);
.....
有几个方法接受一个FrameIndex
参数,但是,什么是FrameIndex
?我可以在哪里获得FrameIndex
?