SdbFindNextTag function

Searches for the next TAG match within the specified parent and returns the TAGID of the match.

Syntax

TAGID WINAPI SdbFindNextTag(
  _In_ PDB   pdb,
  _In_ TAGID tiParent,
  _In_ TAGID tiPrev
);

Parameters

pdb [in]

A handle to the shim database.

tiParent [in]

The TAGID of the search start. This parameter can be TAGID_ROOT or TAG_TYPE_LIST.

tiPrev [in]

The TAGID of the previous match.

Return value

The TAGID of the match.

Remarks

Before calling this function, call the SdbFindFirstTag function.

Requirements

Requirement Value
Minimum supported client
Windows XP [desktop apps only]
Minimum supported server
Windows Server 2003 [desktop apps only]
DLL
Apphelp.dll

See also

SdbFindFirstTag

SdbTagRefToTagID