BerElement structure (winldap.h)
A BerElement structure is a C++ class object that performs basic encoding rules (BER) encoding.
Syntax
typedef struct berelement {
PCHAR opaque;
} BerElement;
Members
opaque
Pointer to an opaque buffer. Do not attempt to access it.
Remarks
This is an opaque data structure that the ldap_first_attribute function allocates and returns to indicate the current position during a traversal of an attribute list. Pass the pointer to this structure to the ldap_next_attribute function.
Caution When allocated by one of the two previous functions, you do not free the memory associated with this structure or its pointer when the BerElement is no longer required.
Requirements
Requirement | Value |
---|---|
Minimum supported client | Windows Vista |
Minimum supported server | Windows Server 2008 |
Header | winldap.h |