Skip to content

Latest commit

 

History

History
51 lines (38 loc) · 1.32 KB

idiasymbol-get-liverangestartaddressoffset.md

File metadata and controls

51 lines (38 loc) · 1.32 KB
description title ms.date ms.topic dev_langs helpviewer_keywords author ms.author manager ms.subservice
Returns the offset part of the starting address of the range in which the local symbol is valid.
IDiaSymbol::get_liveRangeStartAddressOffset
11/04/2016
reference
C++
IDiaSymbol::get_liveRangeStartAddressOffset
mikejo5000
mikejo
mijacobs
debug-diagnostics

IDiaSymbol::get_liveRangeStartAddressOffset

Returns the offset part of the starting address of the range in which the local symbol is valid.

Syntax

HRESULT get_liveRangeStartAddressOffset ( 
   DWORD* offset
);

Parameters

offset

[out] Returns the offset part of the starting address range.

Return Value

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

Note

A returned error code means that the symbol does not have live range information.

Remarks

The address formed by the section and offset is the beginning of the range in which the symbol is valid.

To get the section part of the address, use IDiaSymbol::get_liveRangeStartAddressSection.

Requirements

Header: Dia2.h

Library: diaguids.lib

DLL: msdia100.dll

See also