TAPI を初期化する
次のコード例は、TAPI オブジェクトの作成を示しています。
const auto result = ITTAPI::Initialize();
if (result != S_OK) {
switch (result) {
case S_FALSE: {
std::cerr << "TAPI has already been initialized.\n";
} break;
[[fallthrough]]
case E_OUTOFMEMORY: {
std::cerr << "Insufficient memory exists to perform the operation.\n";
}
default: {
// TODO: Handle unrecoverable error here
}
}
}