Scroll to navigation

IDispatch_GetTypeInfoCount(3w) Wine API IDispatch_GetTypeInfoCount(3w)

NAME

IDispatch_GetTypeInfoCount (OLEAUT32.@)

SYNOPSIS

static HRESULT IDispatch_GetTypeInfoCount
(
LPDISPATCH iface,
UINT* pctinfo
)
 

DESCRIPTION

Get the count of type information in an IDispatch interface.
 

PARAMS

iface [In] IDispatch interface.
pctinfo [Out] Destination for the count.
 

RETURNS

Success: S_OK. pctinfo is updated with the count. This is always 1 if the object provides type information, and 0 if it does not.
Failure: E_NOTIMPL. The object does not provide type information.
 

NOTES

See IDispatch(3w) and IDispatch_GetTypeInfo(3w).
 

IMPLEMENTATION

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