다음을 통해 공유


IDebugHostConstant::GetValue 메서드(dbgmodel.h)

GetValue 메서드는 VARIANT에 압축된 상수의 값을 반환합니다.

IDebugHostSymbol의 GetType 메서드는 상수에 대한 특정 형식 기호를 반환할 수 있습니다. 이러한 경우 형식 기호에 정의된 상수 값의 압축이 여기서 GetValue 메서드에서 반환된 압축과 동일하다는 보장은 없습니다.

구문

HRESULT GetValue(
  VARIANT *value
);

매개 변수

value

VARIANT에 압축된 데이터의 값이 여기에 반환됩니다.

반환 값

이 메서드는 성공 또는 실패를 나타내는 HRESULT를 반환합니다.

설명

예제 코드

ComPtr<IDebugHostConstant> spConstant; /* get a constant */

VARIANT vtValue;
if (SUCCEEDED(spConstant->GetValue(&vtValue)))
{
    // vtValue contains the value of the constant.  The variant type of vtValue 
    // may not match what the type indicates if you get the type of the symbol.
    VariantClear(&vtValue);
}

요구 사항

요구 사항
헤더 dbgmodel.h

추가 정보

IDebugHostConstant 인터페이스