IDiaSymbol::get_exceptionHandlerRelativeVirtualAddress

Retrieves the relative virtual address (RVA) of the exception handler of this function.

Syntax

HRESULT get_exceptionHandlerRelativeVirtualAddress ( 
   DWORD* pRetVal
);

Parameters

pRetVal

[out] Returns the relative virtual address (RVA) of this function's exception handler.

Return Value

If successful, returns S_OK; otherwise, returns S_FALSE or an error code.

Note

A return value of S_FALSE means that the property is not available for the symbol.

Remarks

For machines that do not use .pdata and .xdata for exception and unwind information (currently only x86), this method can be used to retrieve the address of the per-function exception inforation.

See also