次の方法で共有


IProvideClassInfo::GetClassInfo (Windows CE 5.0)

Send Feedback

This method returns a pointer to the ITypeInfo interface for the object's type information. The type information for an object corresponds to the object's coclass entry in a type library.

HRESULT GetClassInfo(ITypeInfo** ppTI);

Parameters

  • ppTI
    [out] Address of ITypeInfo* pointer variable that receives the interface pointer to the object's type information.

    The caller is responsible for calling the ITypeInfo::Release method on the returned interface pointer if this method returns successfully.

Return Values

This method supports the standard return values E_OUTOFMEMORY and E_UNEXPECTED.

If the type information was successfully returned, the method returns S_OK.

If the address in ppTI is not valid, the method returns E_POINTER.

Remarks

Notes to Callers

The caller is responsible for calling ITypeInfo::Release when the returned interface pointer is no longer needed.

Notes to Implementers

This method must call ITypeInfo::AddRef before returning. If the object loads the type information from a type library, the type library itself will call AddRef in creating the pointer.

Because the caller cannot specify a locale identifier (LCID) when calling this method, this method must assume the neutral language, that is, LANGID_NEUTRAL, and use this value to determine what locale-specific type information to return.

This method must be implemented; E_NOTIMPL is not an acceptable return value.

To determine whether the platform supports this interface, see Determining Supported COM APIs.

Requirements

OS Versions: Windows CE 3.0 and later.
Header: Ocidl.h, Ocidl.idl.
Link Library: Ole32.lib, Uuid.lib.

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.