DkmThread.SetExtendedRegisterValue 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.
Sets the value of the extended register in the thread's context.
public:
void SetExtendedRegisterValue(int RegisterIndex, System::Collections::ObjectModel::ReadOnlyCollection<System::Byte> ^ Value);
public void SetExtendedRegisterValue (int RegisterIndex, System.Collections.ObjectModel.ReadOnlyCollection<byte> Value);
member this.SetExtendedRegisterValue : int * System.Collections.ObjectModel.ReadOnlyCollection<byte> -> unit
Public Sub SetExtendedRegisterValue (RegisterIndex As Integer, Value As ReadOnlyCollection(Of Byte))
Parameters
- RegisterIndex
- Int32
[In] The CV constant of the register to set. For AVX, this can be any of the YMM register enumeration codes. The caller is expected to set the full YMM register (including the portions which are aliased on XMM registers).
- Value
- ReadOnlyCollection<Byte>
[In] The value to set the register to. The size of the byte array must match the width of the register being set.