IMFSignedLibrary::GetProcedureAddress method (mfidl.h)

Gets the procedure address of the specified function in the signed library.

Syntax

HRESULT GetProcedureAddress(
  LPCSTR name,
  PVOID  *address
);

Parameters

name

The entry point name in the DLL that specifies the function.

address

Receives the address of the entry point.

Return value

The method returns an HRESULT. Possible values include, but are not limited to, those in the following table.

Return code Description
S_OK
The method succeeded.

Remarks

See MFLoadSignedLibrary for an example of how to create an IMFSignedLibrary object and call the GetProcedureAddress method.

Requirements

Requirement Value
Minimum supported client Windows 8 [desktop apps | UWP apps]
Minimum supported server Windows Server 2012 [desktop apps | UWP apps]
Target Platform Windows
Header mfidl.h

See also

IMFSignedLibrary

MFLoadSignedLibrary