Initialize TAPI
The following code example demonstrates creation of the TAPI object.
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
}
}
}