C++
const ACHAR* acdbXlateReservedString( const ACHAR* strSource, bool bGetLocalized = true );
File
dbxutil.h
Description
This function returns a translated reserved string. If bGetLocalized is true, strSource is assumed to be the internal string, and the localized version is returned. Otherwise, strSource is assumed to be localized, and the internal string is returned.
When using an English locale, the localized string returned will be the English version of the reserved string. This function is not meant to be used as a conversion between the English and localized string, but rather as a conversion between the internal and localized string.
strSource is not case sensitive.
The function returns NULL on failure.
Parameters
Parameters | Description |
---|---|
strSource | Input reserved string to translate |
bGetLocalized | Input boolean indicating which way to translate |