IDebugReference2::SetValueAsReference

Sets the value of a reference from another reference. Reserved for future use.

Syntax

HRESULT SetValueAsReference ( 
   IDebugReference2** rgpArgs,
   DWORD              dwArgCount,
   IDebugReference2*  pValue,
   DWORD              dwTimeout
);
int SetValueAsReference ( 
   IDebugReference2[] rgpArgs,
   uint               dwArgCount,
   IDebugReference2   pValue,
   uint               dwTimeout
);

Parameters

rgpArgs
[in] An array of IDebugReference2 objects used to determine how to set the reference value.

dwArgCount
[in] The number of references in the array.

pValue
[in] An IDebugReference2 object from which to set the property value.

dwTimeout
[in] Maximum time, in milliseconds, to wait before returning from this method. Use INFINITE to wait indefinitely.

Return Value

Always returns E_NOTIMPL.

See also