Debugging Tools for Windows

SetPseudoValues

The SetPseudoValues method sets the value of several pseudo-registers.

HRESULT
  IDebugRegisters2::SetPseudoValues(
    IN ULONG  Source,
    IN ULONG  Count,
    IN OPTIONAL PULONG  Indices,
    IN ULONG  Start,
    IN PDEBUG_VALUE  Values
    );

Parameters

Source
Specifies the register source to query.

The possible values are listed in the following table.

Value Register source
DEBUG_REGSRC_DEBUGGEE Fetch register information from the target.
DEBUG_REGSRC_EXPLICIT Fetch register information from the current explicit register context.
DEBUG_REGSRC_FRAME Fetch register information from the current scope's register context.

Note Stack unwinding does not guarantee accurate updating of the register context, so the scope frame's register context might not be accurate in all cases.

Count
Specifies the number of pseudo-registers whose values are being set.
Indices
Specifies an array of indices of pseudo-registers. These are the pseudo-registers whose values will be set. The size of Indices is Count. If Indices is NULL, Start is used to specify the indices instead.
Start
Specifies the index of the first pseudo-register whose value will be set. The pseudo-registers with indices between Start and Start plus Count minus one, will be set. Start is only used if Indices is NULL.
Values
Specifies the new values of the pseudo-registers. The number of elements this array holds is Count. See DEBUG_VALUE for a description of this parameter type.

Return Value

S_OK
The method was successful.

This list does not contain all the errors that might occur. For a list of possible errors, see HRESULT Values.

Interface Version

SetPseudoValues is available in IDebugRegisters2 and later versions.

Comments

For an overview of the IDebugRegisters interface and other register-related methods, see Registers.

Requirements

Headers: Defined in DbgEng.h. Include DbgEng.h.

See Also

GetPseudoValues

Build machine: CAPEBUILD