IDebugHostType2::GetSize メソッド (dbgmodel.h)
GetSize メソッドは、型のサイズ (C++ で sizeof(type) を実行したかのように) を返します。
構文
HRESULT GetSize(
ULONG64 *size
);
パラメーター
size
型のサイズがここで返されます。
戻り値
このメソッドは、成功または失敗を示す HRESULT を返します。
注釈
サンプル コード
ComPtr<IDebugHostType2> spType; /* get a type (see FindTypeByName) */
ULONG64 size;
if (SUCCEEDED(spType->GetSize(&size)))
{
// size is equivalent to sizeof( <type> )
}
要件
要件 | 値 |
---|---|
Header | dbgmodel.h |