For example, MessageBox function has LPCTSTR typed argument for text and caption, which is a pointer to char or pointer to wchar when _UNICODE or _MBCS are defined, respecti
There are normally two different implementations of each function:
MessageBoxA
, which accepts ANSI stringsMessageBoxW
, which accepts Unicode stringsHere, 'ANSI' means the multi-byte code page currently assigned to the process. This varies according to the user's preferences and locale setting, although Win32 API functions such as WideCharToMultiByte
can be counted on to do the right conversion, and the GetACP
function will tell you the code page in use. MSDN explains the ANSI code page and how it interacts with Unicode.
'Unicode' generally means UCS-2; that is, support for characters above 0xFFFF isn't consistent. I haven't tried this, but UI functions such as MessageBox
in recent versions (> Windows 2000) should support characters outside the BMP.