Método IDebugHostType2::GetSize (dbgmodel.h)
El método GetSize devuelve el tamaño del tipo (como si hubiera hecho sizeof(type) en C++).
Sintaxis
HRESULT GetSize(
ULONG64 *size
);
Parámetros
size
El tamaño del tipo se devolverá aquí.
Valor devuelto
Este método devuelve HRESULT que indica éxito o error.
Comentarios
Código de ejemplo
ComPtr<IDebugHostType2> spType; /* get a type (see FindTypeByName) */
ULONG64 size;
if (SUCCEEDED(spType->GetSize(&size)))
{
// size is equivalent to sizeof( <type> )
}
Requisitos
Requisito | Valor |
---|---|
Header | dbgmodel.h |