ITypeInfo::GetTypeAttr
This method retrieves a TYPEATTR structure that contains the type description attributes.
HRESULT GetTypeAttr(
TYPEATTR FAR* FAR* ppTypeAttr
);
Parameters
- ppTypeAttr
[out] On return, pointer to a pointer to a structure that contains the attributes of this type description.
Return Values
The following table shows the return values for this function.
Value | Description |
---|---|
S_OK | Success. |
E_OUTOFMEMORY | Out of memory. |
E_INVALIDARG | One or more of the parameters is invalid. |
TYPE_E_IOERROR | The function could not write to the file. |
TYPE_E_INVDATAREAD | The function could not read from the file. |
TYPE_E_UNSUPFORMAT | The type library has an older format. |
TYPE_E_INVALIDSTATE | The type library could not be opened. |
Remarks
To free the TYPEATTR structure, use ITypeInfo::ReleaseTypeAttr.
Example
CHECKRESULT(ptypeinfoCur->GetTypeAttr(&ptypeattrCur));
.
.
.
ptypeinfoCur->ReleaseTypeAttr(ptypeattrCur);
Requirements
OS Versions: Windows CE 2.0 and later.
Header: Oaidl.h, Oaidl.idl.
Link Library: Oleaut32.lib, Uuid.lib.
See Also
ITypeInfo | ITypeInfo::ReleaseTypeAttr | TYPEATTR
Last updated on Wednesday, April 13, 2005
© 2005 Microsoft Corporation. All rights reserved.