In the Delphi debugAPI there are a couple of references to a FrameIndex
e.g. in:
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);
.....
Several methods accept a FrameIndex
parameter, but, what is a FrameIndex
? and where I can aquire a FrameIndex
?