Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Retrieves a specified symbol type that contains, or is closest to, a specified relative virtual address (RVA).
HRESULT findSymbolByRVA (
DWORD rva,
SymTagEnum symtag,
IDiaSymbol** ppSymbol
);
Parameters
rva
[in] Specifies the RVA.symtag
[in] Symbol type to be found. Values are taken from the SymTagEnum enumeration.ppSymbol
[out] Returns an IDiaSymbol object that represents the symbol retrieved.
Return Value
If successful, returns S_OK; otherwise, returns an error code.
Example
IDiaSymbol* pFunc;
pSession->findSymbolByRVA( rva, SymTagFunction, &pFunc );