API Reference Guide > Recognition Component API Reference > Recognition Component Functions Reference > Language Settings Functions > IG_REC_languagesplus_set |
Used to specify some individual characters, the LanguagesPlus characters. These characters are added to the set of characters determined by the language selection. The resulting set of characters is called the Language environment.
Copy Code
|
|
---|---|
AT_ERRCOUNT ACCUAPI IG_REC_languagesplus_set( LPCWSTR pLanguagesPlus ); |
Name | Type | Description |
---|---|---|
pLanguagesPlus | LPCWSTR | Pointer to a UNICODE string containing the LanguagesPlus characters to be set. (The string is terminated with a wide-character zero.) |
This function does not process image pixels.
Copy Code
|
|
---|---|
AT_ERRCOUNT ErrCount = 0;
ErrCount += IG_REC_languagesplus_set(L"AaBbCc");
|
WCHAR aW[3]; aW[0] = 0x00c9; //Cap E acute aW[1] = 0x00e9; //Lowercase E acute aW[2] = 0;