将 char 数组转换为 Unicode

发布于 2024-11-02 09:15:55 字数 157 浏览 7 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

奶茶白久 2024-11-09 09:15:55

如果您同意输入编码的“当前系统区域设置”设置和通常的 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文