gpt4 book ai didi

c++ - 将 wchar_t 数组转换为 PUNICODE_STRING

转载 作者:太空宇宙 更新时间:2023-11-04 04:03:44 25 4
gpt4 key购买 nike

我有一个常量字符串 - “testfilename.sys”,我想创建一个 <a href="http://msdn.microsoft.com/en-us/library/windows/desktop/aa380518%28v=vs.85%29.aspx" rel="noreferrer noopener nofollow">PUNICODE_STRING</a>它将容纳它。
我该怎么做?

最佳答案

正如@David Heffernan 指出的那样,RtlInitUnicodeString是创建 UNICODE_STRING 结构的方法。

在你的情况下:

#include <Winternl.h>

[...]

UNICODE_STRING myUnicodeStr;
RtlInitUnicodeString(&myUnicodeStr, L"testfilename.sys");

PUNICODE_STRING 就是 UNICODE_STRING*

关于c++ - 将 wchar_t 数组转换为 PUNICODE_STRING,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8743247/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com