ITTerminalSupport2::EnumeratePluggableSuperclasses method (tapi3if.h)

The EnumeratePluggableSuperclasses method enumerates the pluggable terminal superclasses registered on the current system.

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

Syntax

HRESULT EnumeratePluggableSuperclasses(
  [out] IEnumPluggableSuperclassInfo **ppSuperclassEnumerator
);

Parameters

[out] ppSuperclassEnumerator

Pointer to the IEnumPluggableSuperclassInfo interface.

Return value

This method can return one of these values.

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

Remarks

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

Requirements

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

See also

IEnumPluggableSuperclassInfo

ITTerminalSupport2