IDispatch::GetTypeInfo

[This is preliminary documentation and subject to change.]

Retrieves the type information for an object, which can then be used to get the type information for an interface.

HRESULT GetTypeInfo(
  unsigned int iTInfo,
  LCID lcid,
  ITypeInfo FAR* FAR* ppTInfo
);
 

Parameters

iTInfo
[in] The type information to return. Pass 0 to retrieve type information for the IDispatch implementation.
lcid
[in] The locale identifier for the type information. An object may be able to return different type information for different languages. This is important for classes that support localized member names. For classes that do not support localized member names, this parameter can be ignored.
ppTInfo
[out] Receives a pointer to the requested type information object.

Return Values

TBD