IDkmRuntimeSetNextStatement.SetNextStatement Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
SetNextStatement moves the IP of a stack frame. The stack frame is always the leaf stack frame on a particular thread.
public:
void SetNextStatement(Microsoft::VisualStudio::Debugger::CallStack::DkmStackWalkFrame ^ frame, Microsoft::VisualStudio::Debugger::DkmInstructionAddress ^ newStatement);
public:
void SetNextStatement(Microsoft::VisualStudio::Debugger::CallStack::DkmStackWalkFrame ^ frame, Microsoft::VisualStudio::Debugger::DkmInstructionAddress ^ newStatement);
void SetNextStatement(Microsoft::VisualStudio::Debugger::CallStack::DkmStackWalkFrame const & frame, Microsoft::VisualStudio::Debugger::DkmInstructionAddress const & newStatement);
public void SetNextStatement (Microsoft.VisualStudio.Debugger.CallStack.DkmStackWalkFrame frame, Microsoft.VisualStudio.Debugger.DkmInstructionAddress newStatement);
abstract member SetNextStatement : Microsoft.VisualStudio.Debugger.CallStack.DkmStackWalkFrame * Microsoft.VisualStudio.Debugger.DkmInstructionAddress -> unit
Public Sub SetNextStatement (frame As DkmStackWalkFrame, newStatement As DkmInstructionAddress)
Parameters
- frame
- DkmStackWalkFrame
[In] DkmStackWalkFrame represents a frame on a call stack which has been walked, but may not have been formatted or filtered. Formatted frames are represented by DkmStackFrame instead.
- newStatement
- DkmInstructionAddress
[In] Abstract representation of an executable code location (ex: EIP value). If resolved, an Instruction Address will be within a particular module instance. An Instruction Address is always within a particular Runtime Instance.