IDebugHostType2::GetFunctionReturnType method (dbgmodel.h)

The GetFunctionReturnType method returns the return type of the function.

Syntax

HRESULT GetFunctionReturnType(
  IDebugHostType **returnType
);

Parameters

returnType

A type symbol indicating the return type of the function is returned here.

Return value

This method returns HRESULT that indicates success or failure.

Remarks

Sample Code

ComPtr<IDebugHostType> spType; /* get a type for a function (see FindTypeByName) */

ComPtr<IDebugHostType> spReturnType;
if (SUCCEEDED(spType->GetFunctionReturnType(&spReturnType)))
{
    // spReturnType is the type symbol for the return type of the function.
}

Requirements

Requirement Value
Header dbgmodel.h

See also

IDebugHostType2 interface