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.

link|improve this question

What is the encoding of your "character array"? Which Unicode encoding do you want in output? – Matteo Italia Apr 20 '11 at 15:37
If it is a char array then the encoding could already be Unicode (UTF-8). PS the term Unicode is not an encoding it is a general description of character codepoints. It can be encoded in a couple of different ways (UTF-8/16/32) – Loki Astari Apr 20 '11 at 17:40
feedback

1 Answer

up vote 1 down vote accepted

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.

link|improve this answer
First converted the character array to ANSI_STRING using "RtlInitAnsiString()" and then used RtlAnsiStringToUnicodeString(). – whatisinaname Apr 20 '11 at 17:30
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.