Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
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
}
}
}