berval
This structure is used to represent arbitrary binary data that is encoded according to basic encoding rules (BER). Use this structure to represent any attribute that cannot be represented by a null-terminated string.
typedef struct berval {
ULONG bv_len;
UNICODE PTCHAR bv_val;
} LDAP_BERVAL, *PLDAP_BERVAL, BERVAL, *PBERVAL;
Members
- bv_len
Length of binary data in bytes. - bv_val
Pointer to the binary data.
Remarks
Use this structure for attributes that contain raw binary data, such as certificates, graphics, or sound files.
Requirements
OS Versions: Windows CE .NET 4.0 and later.
Header: Winldap.h.
Last updated on Friday, April 09, 2004
© 1992-2003 Microsoft Corporation. All rights reserved.