Scroll to navigation

SHAnsiToUnicode(3w) Wine API SHAnsiToUnicode(3w)

NAME

SHAnsiToUnicode (SHLWAPI.215)

SYNOPSIS

DWORD SHAnsiToUnicode
(
LPCSTR lpSrcStr,
LPWSTR lpDstStr,
int iLen
)
 

DESCRIPTION

Convert an Ascii string to Unicode.
 

PARAMS

lpSrcStr [In] Source Ascii string to convert.
lpDstStr [Out] Destination for converted Unicode string.
iLen [In] Length of lpDstStr.
 

RETURNS

The return value of the MultiByteToWideChar(3w) function called on lpSrcStr.
 

NOTES

This function simply calls SHAnsiToUnicodeCP with code page CP_ACP.
 

IMPLEMENTATION

Not declared in a Wine header. The function is either undocumented, or missing from Wine.
Implemented in "dlls/shlwapi/string.c".
Debug channel "shell".
Oct 2012 Wine API