IDebugControl3::GetPossibleExecutingProcessorTypes method (dbgeng.h)

The GetPossibleExecutingProcessorTypes method returns the processor types that are supported by the computer running the current target.

Syntax

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

Parameters

[in] Start

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

[in] Count

Specifies how many 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

GetActualProcessorType

GetNumberPossibleExecutingProcessorTypes

IDebugControl

IDebugControl2

IDebugControl3