Redigera

Dela via


IDebugHostFunctionIntrospection::EnumerateLocalsDetails method (dbgmodel.h)

The EnumerateLocalsDetails method enumerates a set of information about all locals and arguments within a function. It doesn't enumerate any locals and arguments of functions inlined within the given function. To enumerate inlined functions, use the EnumerateLocalsDetailsEx method on the IDebugHostFunctionIntrospection2 interface.

Syntax

HRESULT EnumerateLocalsDetails(
  IDebugHostFunctionLocalDetailsEnumerator **localsEnum
);

Parameters

localsEnum

A pointer to a pointer variable that receives the IDebugHostFunctionLocalDetailsEnumerator interface of the enumerated locals details.

Return value

If the method succeeds, it returns S_OK. Otherwise, it returns an HRESULT error code.

Requirements

Requirement Value
Header dbgmodel.h

See also

IDebugHostFunctionIntrospection interface