| Windows Generic String Operation FunctionsInternationalization (I18n) Issue:
These functions are the Generic versions of the single-byte, 
wide, and multibyte 
character string functions. To operate correctly, generic arguments and return values should be used.
 I18n Solution:
Use the appropriate equivalent Windows Generic string function when
              reengineering an application for internationalization. 
 I18n Discussion:When a Generic function call is used, the _MBCSor_UNICODEcompiler switch determines whether to map to the multibyte or wide version of the function. 
               For example,_tctimewill map toctimeif the_MBCScompiler switch is defined, and to_wctimeif the_UNICODEswitch is defined. The arguments and return values for these functions are also Generic and dependent on the
               _MBCS/_UNICODEswitch for their mapping to either narrow or wide-character data. See the MSDN Library's Using Generic Text Mappings for more information. Click on a function for more information:_tcscat/_ftcscat
 _tcschr
 _tcsclen/_tcslen
 _tcscpy/_ftcscpy
 _tcscspn
 _tcsdec
 _tcsdup
 _tcserror
 _tcsinc
 _tcslwr
 _tcslwr_l
 _tcslwr_s
 _tcslwr_s_l
 _tcsnextc
 _tcsninc
 _tcspbrk
 _tcsrchr
 _tcsrev
 _tcsset
 _tcsspn
 _tcsspnp
 _tcsstr
 _tcstod
 _tcstoi64
 _tcstok
 _tcstol
 _tcstoui64
 _tcstoul
 _tcsupr
 _tcsupr_l
 _tcsupr_s
 _tcsupr_s_l
 _tgetenv
 _tperror
 _tputenv
 _tstof/_ttof
 _tstoi/_ttoi
 _tstoi64/_ttoi64
 _tstol/_ttol
    Locale-Sensitive C++ Methods
   
 |