ITypeInfo::AddressOfMember method (oaidl.h)

Retrieves the addresses of static functions or variables, such as those defined in a DLL.

Syntax

HRESULT AddressOfMember(
  [in]  MEMBERID   memid,
  [in]  INVOKEKIND invKind,
  [out] PVOID      *ppv
);

Parameters

[in] memid

The member ID of the static member whose address is to be retrieved. The member ID is defined by the DISPID.

[in] invKind

Indicates whether the member is a property, and if so, what kind.

[out] ppv

The static member.

Return value

This method can return one of these values.

Return code Description
S_OK
Success.
E_INVALIDARG
One or more of the arguments is not valid.
E_OUTOFMEMORY
Insufficient memory to complete the operation.

Remarks

The addresses are valid until the caller releases its reference to the type description. The invKind parameter can be ignored unless the address of a property function is being requested.

If the type description inherits from another type description, this function is recursive to the base type description, if necessary, to find the item with the requested member ID.

Requirements

Requirement Value
Target Platform Windows
Header oaidl.h

See also

ITypeInfo