LCMapStringA (KERNEL32.@)
INT LCMapStringA ( LCID lcid, DWORD flags, LPCSTR src, INT srclen, LPSTR dst, INT dstlen )
Map characters in a locale sensitive string.
lcid | [In] | LCID for the conversion. |
flags | [In] | Flags controlling the mapping (LCMAP_ constants from "winnls.h"). |
src | [In] | String to map. |
srclen | [In] | Length of src in chars, or -1 if src is NUL terminated. |
dst | [Out] | Destination for mapped string. |
dstlen | [In] | Length of dst in characters. |
Success: The length of the mapped string in dst, including the NUL terminator.
Failure: 0. Use GetLastError to determine the cause.
Defined in "winnls.h".
Implemented in "dlls/kernel32/locale.c". source.winehq.org/source/dlls/kernel32/locale.c
Debug channel "nls".
Copyright © 2008 The Wine Project. All trademarks are the property of their respective owners. Visit WineHQ for license details. Generated Jul 2008.