ITypeInfo.GetFuncDesc(Int32, IntPtr) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.