CMSPAddress::GetDynamicTerminalClasses method (mspaddr.h)

The GetDynamicTerminalClasses method is called by our wrapper methods to get an array of dynamic terminal classes that can be used on this address. The semantics of the arguments are the same as for GetStaticTerminals. This method simply asks the Terminal Manager for the terminal classes. MSPs that implement additional, custom types of dynamic terminals, or that want to disallow the use of certain dynamic terminal classes from the Terminal Manager, would want to override this method.

Syntax

HRESULT GetDynamicTerminalClasses(
  [out] DWORD *pdwNumClasses,
  [out] IID   *pTerminalClasses
);

Parameters

[out] pdwNumClasses

Pointer to number of dynamic terminals.

[out] pTerminalClasses

Pointer to array of ITTerminal interfaces.

Return value

None

Requirements

Requirement Value
Target Platform Windows
Header mspaddr.h

See also

CMSPAddress