ITAutomatedPhoneControl::EnumerateSelectedCalls method (tapi3if.h)

The EnumerateSelectedCalls method retrieves an enumerator object indicating which calls are currently selected on this phone. See ITAutomatedPhoneControl::SelectCall for more information.

This method is intended for C and C++ programmers. Applications written in Visual Basic, Java, or various scripting languages should use the get_SelectedCalls method instead.

Syntax

HRESULT EnumerateSelectedCalls(
  [out] IEnumCall **ppCallEnum
);

Parameters

[out] ppCallEnum

Pointer to the IEnumCall interface.

Return value

If the method succeeds, it returns S_OK. Otherwise, it returns an error value.

Remarks

TAPI calls the AddRef method on the IEnumCall interface returned by this method. The application must call the Release method on the IEnumCall interface to free resources associated with it.

Requirements

Requirement Value
Target Platform Windows
Header tapi3if.h (include Tapi3.h)
Library Uuid.lib
DLL Tapi3.dll

See also

ITAutomatedPhoneControl

ITAutomatedPhoneControl::SelectCall