ITTerminalSupport2::get_PluggableSuperclasses method (tapi3if.h)

The get_PluggableSuperclasses method returns a collection of ITPluggableTerminalSuperclassInfo superclass information interface pointers.

This method is intended for Visual Basic and scripting applications. C/C++ applications can use the EnumeratePluggableSuperclasses method.

Syntax

HRESULT get_PluggableSuperclasses(
  [out] VARIANT *pVariant
);

Parameters

[out] pVariant

Pointer to a VARIANT containing an ITCollection of ITPluggableTerminalSuperclassInfo interface pointers.

Return value

This method can return one of these values.

Value Meaning
S_OK
Method succeeded.
E_FAIL
The method failed.
E_POINTER
The pVariant parameter is not a valid pointer.

Remarks

TAPI calls the AddRef method on the ITPluggableTerminalSuperclassInfo interface returned by ITTerminalSupport2::get_PluggableSuperclasses. The application must call Release on the ITPluggableTerminalSuperclassInfo interface to free resources associated with it.

Requirements

Requirement Value
Target Platform Windows
Header tapi3if.h (include Tapi3.h)

See also

ITCollection

ITPluggableTerminalSuperclassInfo

ITTerminalSupport2