SHUnicodeToAnsi.3w

Langue: en

Version: Jun 2009 (debian - 07/07/09)

Section: 3 (Bibliothèques de fonctions)

NAME

SHUnicodeToAnsi (SHLWAPI.217)

SYNOPSIS

INT SHUnicodeToAnsi
 (
  LPCWSTR lpSrcStr,
  LPSTR   lpDstStr,
  INT     iLen
 )

DESCRIPTION

Convert a Unicode string to Ascii.

PARAMS

lpSrcStr [In] Source Unicode string to convert.

lpDstStr [Out] Destination for converted Ascii string.

iLen [Out] Length of lpDstStr in characters.

RETURNS

See SHUnicodeToAnsiCP.

NOTES

This function simply calls SHUnicodeToAnsiCP(3w) with CodePage = CP_ACP.

IMPLEMENTATION

Exported by ordinal only. Use GetProcAddress(3w) to obtain a pointer to the function.

Implemented in "dlls/shlwapi/string.c".

Debug channel "shell".