IDataModelScriptDebugBreakpointEnumerator::GetNext method (dbgmodel.h)

The GetNext method moves the enumerator forward to the next breakpoint to be enumerated and returns the IDataModelScriptDebugBreakpoint interface for that breakpoint. If the enumerator has reached the end of the enumeration, it returns E_BOUNDS. Once the E_BOUNDS error has been produced, subsequent calls to the GetNext method will continue to produce E_BOUNDS unless an intervening call to the Reset method has been made.

Syntax

HRESULT GetNext(
  IDataModelScriptDebugBreakpoint **breakpoint
);

Parameters

breakpoint

The next enumerated breakpoint is returned here.

Return value

This method returns HRESULT that indicates success or failure.

Requirements

Requirement Value
Header dbgmodel.h

See also

IDataModelScriptDebugBreakpointEnumerator interface