IDebugDataSpaces3::GetNextTagged method (dbgeng.h)

The GetNextTagged method returns the GUID for the next block of tagged data in the enumeration.

Syntax

HRESULT GetNextTagged(
  [in]  ULONG64 Handle,
  [out] LPGUID  Tag,
  [out] PULONG  Size
);

Parameters

[in] Handle

Specifies the handle identifying the enumeration. This is the handle returned by StartEnumTagged.

[out] Tag

Receives the GUID identifying the tagged data. The data may be retrieved by passing this GUID to ReadTagged.

[out] Size

Receives the size of the data identified by the GUID Tag.

Return value

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

Return code Description
S_OK
The method was successful.
S_FALSE
There are no more blocks of tagged data available in this enumeration.

Requirements

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

See also

IDebugDataSpaces3

IDebugDataSpaces4

ReadTagged

StartEnumTagged