NAME

SHUnicodeToAnsiCP  (SHLWAPI.218)

SYNOPSIS

 DWORD SHUnicodeToAnsiCP
 (
  UINT    CodePage,
  LPCWSTR lpSrcStr,
  LPSTR   lpDstStr,
  int     dstlen
 )

DESCRIPTION

Convert a Unicode string to ANSI.

PARAMS

CodePage [In] Code page to use for the conversion.
lpSrcStr [In] Source Unicode string to convert.
lpDstStr [Out] Destination for converted ANSI 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 to obtain a pointer to the function.

Implemented in "dlls/shlwapi/string.c". https://source.winehq.org/source/dlls/shlwapi/string.c

Debug channel "shell".


Copyright © 2024 The Wine Project. All trademarks are the property of their respective owners. Visit WineHQ for license details. Generated Apr 2024.