Scroll to navigation

IDispatch_GetTypeInfo(3w) Wine API IDispatch_GetTypeInfo(3w)

NAME

IDispatch_GetTypeInfo (OLEAUT32.@)

SYNOPSIS

static HRESULT IDispatch_GetTypeInfo
(
LPDISPATCH iface,
UINT iTInfo,
LCID lcid,
ITypeInfo** ppTInfo
)
 

DESCRIPTION

Get type information from an IDispatch interface.
 

PARAMS

iface [In] IDispatch interface.
iTInfo [In] Index of type information.
lcid [In] Locale of the type information to get.
ppTInfo [Out] Destination for the ITypeInfo object.
 

RETURNS

Success: S_OK. ppTInfo is updated with the objects type information
Failure: DISP_E_BADINDEX, if iTInfo is any value other than 0.
 

NOTES

See IDispatch(3w).
 

IMPLEMENTATION

Declared in "oaidl.h".
Implemented in "dlls/oleaut32/dispatch.c".
Debug channel "ole".
Oct 2012 Wine API