ImageGear Professional DLL v17.1 for Windows Accusoft
IG_REC_languagesplus_get
Send Feedback  
ImageGear Professional DLL v17.1 for Windows > API Reference Guide > Recognition Component API Reference > Recognition Component Functions Reference > Language Settings Functions > IG_REC_languagesplus_get

Glossary Item Box

Inquires the current contents of the LanguagesPlus characters setting.

Declaration:

  Copy Code
AT_ERRCOUNT ACCUAPI IG_REC_languagesplus_get(
   LPCWSTR pLanguagesPlus,
   AT_INT nBufferSize
);

Arguments:

pLanguagesPlus Pointer to a buffer to get the string of characters validated by the current LanguagesPlus setting in UNICODE.
nBufferSize Specifies the size of the pLanguagesPlus buffer in bytes. It must be large enough to hold all the characters and the terminating zero.

Return Value:

Returns the number of ImageGear errors that occurred during this function call.

Supported Raster Image Formats:

This function does not process image pixels.

Example:

  Copy Code
AT_ERRCOUNT ErrCount = 0;
AT_INT iSize = 1024;
LPWSTR lpszLangsPlus = (LPWSTR) malloc(iSize);
ErrCount += IG_REC_languagesplus_get((LPCWSTR)lpszLangsPlus, iSize);
free(lpszLangsPlus);

©2012. Accusoft Corporation. All Rights Reserved.