ITDirectoryObject::EnumerateDialableAddrs method (rend.h)

[Rendezvous IP Telephony Conferencing controls and interfaces are not available for use in Windows Vista, Windows Server 2008, and subsequent versions of the operating system. The RTC Client API provides similar functionality.]

The EnumerateDialableAddrs method creates an enumerator of all dialable addresses of a given type from the directory.

Syntax

HRESULT EnumerateDialableAddrs(
  [in]  DWORD              dwAddressType,
  [out] IEnumDialableAddrs **ppEnumDialableAddrs
);

Parameters

[in] dwAddressType

Indicator of the address type.

[out] ppEnumDialableAddrs

Pointer to the IEnumDialableAddrs interface.

Return value

This method can return one of these values.

Value Meaning
S_OK
Method succeeded.
E_POINTER
Invalid pointer.
ERROR
Method failed.

Remarks

TAPI calls the AddRef method on the IEnumDialableAddrs interface returned by ITDirectoryObject::EnumerateDialableAddrs. The application must call Release on the IEnumDialableAddrs interface to free resources associated with it.

Requirements

Requirement Value
Target Platform Windows
Header rend.h
DLL Rend.dll

See also

IEnumDialableAddrs

ITDirectoryObject