Share via


IDebugMemoryContext2::Add

Adds the specified value to the current context and returns a new context.

HRESULT Add( 
   UINT64                 dwCount,
   IDebugMemoryContext2** ppMemCxt
);
int Add(
   ulong                    dwCount, 
   out IDebugMemoryContext2 ppMemCxt
);

Parameters

  • dwCount
    [in] The value to add to the current context.

  • ppMemCxt
    [out] Returns a new IDebugMemoryContext2 object.

Return Value

If successful, returns S_OK; otherwise, returns an error code.

Remarks

A memory context is an address, so adding a value to an address produces a new address that requires a new context interface.

This method must always produce a new context, even if the resulting address is outside the memory space associated with this context. The only exception to this is if no memory can be allocated for the new context or if ppMemCxt is a null value (which is an error).

See Also

Reference

IDebugMemoryContext2