Bilješka
Pristup ovoj stranici zahtijeva provjeru vjerodostojnosti. Možete pokušati da se prijavite ili promijenite direktorije.
Pristup ovoj stranici zahtijeva provjeru vjerodostojnosti. Možete pokušati promijeniti direktorije.
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
}
}
}