(dbgmodel.h) 的 IDebugHostData::GetLocation 方法
對於具有地址的數據,GetLocation 方法會傳回欄位) 的抽象位置 (位址。 如果指定的數據沒有靜態位置,GetLocation 方法將會失敗。
語法
HRESULT GetLocation(
Location *location
);
參數
location
抽象位置 (例如:數據位址) 會在這裡傳回。
傳回值
這個方法會傳回表示成功或失敗的 HRESULT。
備註
範例程式碼
ComPtr<IDebugHostData> spData; /* get a data symbol */
Location dataLocation;
if (SUCCEEDED(spData->GetLocation(&dataLocation)))
{
// For data which has a static location as determined by
// GetLocationKind, dataLocation contains the location of the data
}
規格需求
需求 | 值 |
---|---|
標頭 | dbgmodel.h |