Condividi tramite


Metodo IDebugHostType::GetSize (dbgmodel.h)

Il metodo GetSize restituisce le dimensioni del tipo , come se fosse stato eseguito sizeof(type) in C++.

Sintassi

HRESULT GetSize(
  ULONG64 *size
);

Parametri

size

Le dimensioni del tipo verranno restituite qui.

Valore restituito

Questo metodo restituisce HRESULT che indica l'esito positivo o negativo.

Commenti

Codice di esempio

ComPtr<IDebugHostType> spType; /* get a type (see FindTypeByName) */

ULONG64 size;
if (SUCCEEDED(spType->GetSize(&size)))
{
    // size is equivalent to sizeof( <type> )
}

Requisiti

Requisito Valore
Intestazione dbgmodel.h

Vedi anche

Interfaccia IDebugHostType