IDebugControl::GetSupportedProcessorTypes method (dbgeng.h)

The GetSupportedProcessorTypes method returns the processor types supported by the debugger engine.

Syntax

HRESULT GetSupportedProcessorTypes(
  [in]  ULONG  Start,
  [in]  ULONG  Count,
  [out] PULONG Types
);

Parameters

[in] Start

Specifies the index of the first processor type to return. The supported processor types are indexed by the numbers zero through the number of supported processor types minus one. The number of supported processor types can be found using GetNumberSupportedProcessorTypes.

[in] Count

Specifies the number of processor types to return.

[out] Types

Receives the list of processor types. The number of elements this array holds is Count. For a description of the processor types, see GetActualProcessorType.

Return value

This method may also return error values. See Return Values for more details.

Return code Description
S_OK
The method was successful.

Remarks

For more information, see Target Information.

Requirements

Requirement Value
Target Platform Desktop
Header dbgeng.h (include Dbgeng.h)

See also

GetNumberSupportedProcessorTypes

GetProcessorTypeNames

IDebugControl

IDebugControl2

IDebugControl3