ITypeInfo.GetFuncDesc(Int32, IntPtr) Method

Definition

Retrieves the FUNCDESC structure that contains information about a specified function.

public:
 void GetFuncDesc(int index, [Runtime::InteropServices::Out] IntPtr % ppFuncDesc);
public void GetFuncDesc (int index, out IntPtr ppFuncDesc);
abstract member GetFuncDesc : int * nativeint -> unit
Public Sub GetFuncDesc (index As Integer, ByRef ppFuncDesc As IntPtr)

Parameters

index
Int32

The index of the function description to return.

ppFuncDesc
IntPtr

nativeint

When this method returns, contains a reference to a FUNCDESC structure that describes the specified function. This parameter is passed uninitialized.

Remarks

The values of the ppFuncDesc parameter can be accessed through the PtrToStructure method.

For more information, see ITypeInfo::GetFuncDesc method.

Applies to