ber_next_element function (winber.h)

The ber_next_element function is used along with ber_first_element to traverse a SET, SET OF, SEQUENCE or SEQUENCE OF data value stored in the supplied BerElement structure. It returns the tag and length of the next element in the constructed type.

Syntax

WINBERAPI ULONG BERAPI ber_next_element(
  [in]      BerElement *pBerElement,
  [in, out] ULONG      *pLen,
  [in, out] CHAR       *opaque
);

Parameters

[in] pBerElement

Pointer to the source BerElement structure.

[in, out] pLen

Returns the length of the next element to be parsed.

[in, out] opaque

An opaque cookie used internally that was returned by the initial call to the ber_first_element function.

Return value

Returns the tag of the next element to be read in the BerElement structure. LBER_DEFAULT is returned if there is no further data to be read.

Remarks

The pLen and opaque pointer values returned by the function are internal parsing state values, and should not be used by applications other than as arguments to subsequent calls of this function.

Requirements

Requirement Value
Minimum supported client Windows Vista
Minimum supported server Windows Server 2008
Target Platform Windows
Header winber.h
Library Wldap32.lib
DLL Wldap32.dll

See also

ber_first_element

ber_peek_tag

ber_skip_tag