SHUnicodeToAnsiCP(3w)
NAME
SHUnicodeToAnsiCP (SHLWAPI.218)
SYNOPSIS
DWORD SHUnicodeToAnsiCP ( UINT CodePage, LPCWSTR lpSrcStr, LPSTR lpDstStr, int dstlen )
DESCRIPTION
Convert a Unicode string to Ascii.
PARAMS
CodePage [In] Code page to use for the conversion.
lpSrcStr [In] Source Unicode string to convert.
lpDstStr [Out] Destination for converted Ascii string.
dstlen [In] Length of buffer at lpDstStr.
RETURNS
Success: The length in bytes of the result at lpDstStr (including the
terminator)
Failure: When using CP_UTF8, CP_UTF7 or 0xc350 as codePage, 0 is
returned and the result is not nul-terminated. When using a different
codepage, the length in bytes of the truncated result at lpDstStr
(including the terminator) is returned and lpDstStr is always nul-terminated.
IMPLEMENTATION
Exported by ordinal only. Use GetProcAddress(3w) to obtain a pointer to
the function.
Implemented in "build/buildd-wine-unstable_1.1.32-1+b1-amd64-KnxYu0/wine-unstable-1.1.32/build32/dlls/shlwapi/string.c".
- Debug channel "shell".