共用方式為


BerElement 結構 (winldap.h)

BerElement 結構是 C++ 類別物件,會執行 BER) 編碼 (基本編碼規則。

語法

typedef struct berelement {
  PCHAR opaque;
} BerElement;

成員

opaque

不透明緩衝區的指標。 請勿嘗試存取它。

備註

這是 ldap_first_attribute 函式在屬性清單周遊期間配置並傳回以指出目前位置的不透明數據結構。 將這個結構的指標傳遞至 ldap_next_attribute 函式。

謹慎 由上述兩個函式之一所配置時,當不再需要 BerElement 時,您不會釋放與此結構或其指標相關聯的記憶體。
 
您也可以呼叫 ber_alloc_tber_init 函式來配置 BerElement 結構。 在這種情況下,請使用 ber_free 函式釋放配置給 BerElement 結構的記憶體。

規格需求

需求
最低支援的用戶端 Windows Vista
最低支援的伺服器 Windows Server 2008
標頭 winldap.h

另請參閱

數據結構

ldap_first_attribute

ldap_next_attribute