Changes between Initial Version and Version 1 of Ticket #3230
- Timestamp:
- 05/10/16 07:52:56 (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #3230 – Description
initial v1 1 The structure in _WideCharToMultiByte (WinAPI.AU3) needs to use the '''byte''' type instead of '''char''', else the result is wrong when the user is requesting output in double-byte codepage (Korean, Japanese, and several other Asian codepages) .1 The structure in _WideCharToMultiByte (WinAPI.AU3) needs to use the '''byte''' type instead of '''char''', else the result is wrong when the user is requesting output in double-byte codepage (Korean, Japanese, and several other Asian codepages) AND the current default system codepage is also double-byte. 2 2 3 3 Follows from thread [https://www.autoitscript.com/forum/topic/182255-unicode-stringtobinary-for-unsupported-language/?page=1] where both working and failing examples are available.