我有为 Win32(XP 和更高版本)设计的代码,我要移植到 Windows Mobile 6。它包含以下行:
int count = ::WideCharToMultiByte( CP_ACP, WC_NO_BEST_FIT_CHARS, ..., 0, 0 );
在 Windows XP 上,这可以正常工作,但在 Windows Mobile 上,它返回 0 并且 GetLastError() 返回错误 1004“无效标志”。WC_NO_BEST_FIT_CHARS
在 Windows Mobile 6 SDK 的 winnls.h 中定义。
::wcstombs
如果我将调用替换为 0或替换为 0 ,则此代码将在我的有限测试中工作WC_NO_BEST_FIT_CHARS
。
我想知道进行这些更改的后果是什么。如果我在中文版或俄文版 Windows Mobile 上运行我的程序,这仍然有效吗?