Método IDebugHostPublic::GetLocation (dbgmodel.h)
Para dados que têm um endereço, o método GetLocation retornará o local abstrato (endereço) do campo.
Se o público especificado não tiver um local estático, o método GetLocation falhará.
Sintaxe
HRESULT GetLocation(
Location *location
);
Parâmetros
location
O local abstrato (por exemplo: endereço) dos dados será retornado aqui.
Retornar valor
Esse método retorna HRESULT que indica êxito ou falha.
Comentários
Código de exemplo
ComPtr<IDebugHostPublic> spPublic; /* get a public symbol (see EnumerateChildren) */
Location publicLocation;
if (SUCCEEDED(spPublic->GetLocation(&publicLocation)))
{
// For public symbols which indicate they have a static location
// via GetLocationKind, publicLocation will be the location of the symbol
}
Requisitos
Requisito | Valor |
---|---|
Cabeçalho | dbgmodel.h |