将 char 数组转换为 Unicode
我正在使用 Visual C++ 开发设备驱动程序。 我需要将字符数组转换为 Unicode 以及 我的驱动程序中的宽字符数组。
指向有用函数的指针将不胜感激。 我知道“RtlInitUnicodeString”将 wchar 转换为 Unicode 但需要帮助来转换简单的字符数组。
I am developing a device driver in Visual C++.
I need to convert a character array to Unicode as well as
wide character array in my driver.
Pointer to useful functions will be appreciated.
I know "RtlInitUnicodeString" which concerts wchar to Unicode
but need help for conversion of simple character arrays.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您同意输入编码的“当前系统区域设置”设置和通常的 UTF-16 输出,则 RtlAnsiStringToUnicodeString 应该在内核模式下可用。
If you are ok with the "current system locale" setting for the input encoding and the output in the usual UTF-16, the RtlAnsiStringToUnicodeString should be available in kernel-mode.