Nóta
Aðgangur að þessari síðu krefst heimildar. Þú getur prófað aðskrá þig inn eða breyta skráasöfnum.
Aðgangur að þessari síðu krefst heimildar. Þú getur prófað að breyta skráasöfnum.
Gets the address of a specified function that was exported from the common language runtime (CLR) associated with this interface.
This method supersedes the GetRealProcAddress function.
Syntax
HRESULT GetProcAddress(
[in] LPCSTR pszProcName,
[out, retval] LPVOID *ppProc);
Parameters
pszProcName
[in] The name of the exported function.
ppProc
[out] The address of the exported function.
Return Value
This method returns the following specific HRESULTs as well as HRESULT errors that indicate method failure.
| HRESULT | Description |
|---|---|
| S_OK | The method completed successfully. |
| E_POINTER | pszProcName or ppProc is null. |
| CLR_E_SHIM_RUNTIMEEXPORT | The specified function is not an exported function. |
Remarks
This method causes the CLR to be loaded but not initialized.
Requirements
Platforms: See System Requirements.
Header: MetaHost.h
Library: Included as a resource in MSCorEE.dll
.NET Framework Versions: Available since 4