You are reading help file online using chmlib.com
|
ISpRecognizer::GetRecoProfile retrieves the current recognition profile token.
HRESULT GetRecoProfile(
ISpObjectToken **ppToken
);
Value | Description |
---|---|
S_OK | Function completed successfully. |
E_POINTER | The ppToken is a bad or invalid pointer. |
FAILED(hr) | Appropriate error message. |
A recognition profile represents a single user and training sessions on the system. The user can create, delete, and set the current profile using Speech properties in Control Panel. SAPI will always create the engine using the current default profile. This method can be used to find which profile is currently being used.
If an application needs to store information in a specific recognition profile, it can use the ISpObjectToken::GetStorageFilename method.
The following code snippet illustrates the use of ISpRecognizer::GetRecoProfile to determine the profile name
HRESULT hr = S_OK; // get the current recognizer's recognition profile token hr = cpRecognizer->GetRecoProfile(&cpObjectToken); // Check hr // get the reco profile name (i.e. the default value of the token) hr = cpObjectToken->GetStringValue(NULL, &pwszRecoProfileName); // Check hr
You are reading help file online using chmlib.com
|