What is the difference between the `A` and `W` functions in the Win32 API?

后端 未结 1 1634
情话喂你
情话喂你 2020-11-27 04:22

What is the difference in calling the Win32 API function that have an A character appended to the end as opposed to the W character.

I know

相关标签:
1条回答
  • 2020-11-27 04:35

    The A functions use Ansi (not ASCII) strings as input and output, and the W functions use Unicode string instead (UCS-2 on NT4 and earlier, UTF-16 on W2K and later). Refer to MSDN for more details.

    0 讨论(0)
提交回复
热议问题