IDebugHostType::GetFunctionCallingConvention 메서드(dbgmodel.h)
GetFunctionCallingConvention 메서드는 함수의 호출 규칙을 반환합니다. 이러한 값은 CallingConventionKind 열거형의 멤버로 반환됩니다.
구문
HRESULT GetFunctionCallingConvention(
CallingConventionKind *conventionKind
);
매개 변수
conventionKind
함수의 호출 규칙은 여기에서 CallingConventionKind 열거형의 멤버로 반환됩니다.
반환 값
이 메서드는 성공 또는 실패를 나타내는 HRESULT를 반환합니다.
설명
예제 코드
ComPtr<IDebugHostModule> spType; /* get a type for some function type (see FindTypeByName) */
CallingConventionKind conv;
if (SUCCEEDED(spType->GetCallingConvention(&conv)))
{
// conv indicates the calling convention (e.g.: cdecl, thiscall, etc...)
}
요구 사항
요구 사항 | 값 |
---|---|
헤더 | dbgmodel.h |