IDebugReference2::GetReferenceInfo
Note
This article applies to Visual Studio 2015. If you're looking for the latest Visual Studio documentation, see Visual Studio documentation. We recommend upgrading to the latest version of Visual Studio. Download it here
Gets the DEBUG_REFERENCE_INFO structure that describes a reference. Reserved for future use.
Syntax
HRESULT GetReferenceInfo (
DEBUGREF_INFO_FLAGS dwFields,
DWORD nRadix,
DWORD dwTimeout,
IDebugReference2** rgpArgs,
DWORD dwArgCount,
DEBUG_REFERENCE_INFO* pReferenceInfo
);
int GetReferenceInfo (
enum_DEBUGREF_INFO_FLAGS dwFields,
uint nRadix,
uint dwTimeout,
IDebugReference2[] rgpArgs,
uint dwArgCount,
DEBUG_REFERENCE_INFO[] pReferenceInfo
);
Parameters
dwFields
[in] A combination of flags from the DEBUGREF_INFO_FLAGS enumeration that determine the fields to be filled out in the DEBUG_REFERENCE_INFO structure.
nRadix
[in] The radix to be used in formatting any numerical information.
dwTimeout
[in] Maximum time, in milliseconds, to wait before returning from this method. Use INFINITE
to wait indefinitely.
rgpArgs
[in] An array of IDebugReference2 objects. Reserved for future use; set to a null value.
dwArgCount
[in] The number of reference arguments in the rgpArgs
array. Reserved for future use; set to 0.
pReferenceInfo
[out] A DEBUG_REFERENCE_INFO structure that is filled in with a description of the property.
Return Value
Always returns E_NOTIMPL
.