DRMGetProcAddress function (msdrm.h)

[The AD RMS SDK leveraging functionality exposed by

the client in Msdrm.dll is available for use in Windows Server 2008, Windows Vista, Windows Server 2008 R2, Windows 7, Windows Server 2012, and Windows 8. It may be altered or

unavailable in subsequent versions. Instead, use Active Directory Rights Management Services SDK 2.1,

which leverages functionality exposed by the client in Msipc.dll.]

The DRMGetProcAddress function returns the address of a function in a library. It is the secure version of the GetProcAddress function.

Syntax

DRMEXPORT HRESULT UDAPICALL DRMGetProcAddress(
  [in]  DRMHANDLE hLibrary,
  [in]  PWSTR     wszProcName,
  [out] FARPROC   *ppfnProcAddress
);

Parameters

[in] hLibrary

A handle to the library where the function resides. Output from DRMLoadLibrary or DRMInitEnvironment.

[in] wszProcName

The name of the function to find the address of.

[out] ppfnProcAddress

Address of the procedure to run.

Return value

If the function succeeds, the function returns S_OK.

If the function fails, it returns an HRESULT value that indicates the error. For a list of common error codes, see Common HRESULT Values.

Remarks

For more information about this function, see GetProcAddress.

Requirements

Requirement Value
Target Platform Windows
Header msdrm.h
Library Msdrm.lib
DLL Msdrm.dll

See also

AD RMS Functions

DRMInitEnvironment

DRMLoadLibrary