Hi,
I am trying to call RtlInitUnicodeString()
(http://msdn.microsoft.com/en-us/libr...=vs.85%29.aspx)
The second parameter takes a PCWSTR and I'm trying to pass something like "Hello World!" as the string. How do I do this?
Thanks
Printable View
Hi,
I am trying to call RtlInitUnicodeString()
(http://msdn.microsoft.com/en-us/libr...=vs.85%29.aspx)
The second parameter takes a PCWSTR and I'm trying to pass something like "Hello World!" as the string. How do I do this?
Thanks
You might try L"Hello World!" which should be a PCWSTR (pointer to constant wide-character string).
Hi,
try it with
L"Hello World"
Thanks, this worked! :)