What I want to know is that if you the same result if you call:
MultiByteToWideChat(CP_ACP, ...)
as when you call:
MultiByteToWideChat(GetACP(), ..)
PEK
CP_ACP instructs the API to use the default ANSI system code page for the
conversion.
The two will provide identical results in the actual conversion.
--
MichKa [MS]
NLS Collation/Locale/Keyboard Technical Lead
Globalization Infrastructure, Fonts, and Tools
Microsoft Windows International Division
This posting is provided "AS IS" with
no warranties, and confers no rights.
"PEK" <pek...@home.se> wrote in message
news:41dab752...@news.individual.net...
>GetACP will answer the question "what is the code page value of the default
>ANSI system code page.
>
>CP_ACP instructs the API to use the default ANSI system code page for the
>conversion.
>
>The two will provide identical results in the actual conversion.
Short and clear, exactly what I wanted to know. Thank you.
PEK