itAddressTranslation::EnumerateCallingCards 方法 (tapi3if.h)

EnumerateCallingCards 方法枚举与地址关联的呼叫卡。 此方法是为 C 和 C++ 应用程序提供的。 自动化客户端应用程序(例如用 Visual Basic 编写的客户端应用程序)必须使用 get_CallingCards 方法。

语法

HRESULT EnumerateCallingCards(
  [out] IEnumCallingCard **ppEnumCallingCard
);

参数

[out] ppEnumCallingCard

指向 IEnumCallingCard 接口的指针。

返回值

此方法可以返回其中一个值。

含义
S_OK
方法成功。
E_POINTER
ppEnumCallingCard 参数不是有效的指针。
E_OUTOFMEMORY
内存不足,无法执行操作。

注解

此方法是 TAPI 2.1 LineGetTranslateCaps 函数的 COM 包装器,从该函数返回的 LINETRANSLATECAPS 结构中获取调用卡信息。

TAPI 在 ITAddressTranslation::EnumerateCallingCards 返回的 IEnumCallingCard 接口上调用 AddRef 方法。 应用程序必须在 IEnumCallingCard 接口上调用 Release,以释放与其关联的资源。

要求

   
目标平台 Windows
标头 tapi3if.h (包括 Tapi3.h)
Library Uuid.lib
DLL Tapi3.dll

另请参阅

Address 对象

IEnumCallingCard

ITAddressTranslation