vote up 0 vote down star

I need to convert a UNICODE_STRING structure to a simple NULL TERMINATED STRING.

typedef 
struct _UNICODE_STRING 
{
    USHORT  Length;  
    USHORT  MaximumLength;  
    PWSTR   Buffer;
} 
UNICODE_STRING, *PUNICODE_STRING;

I can't find a clean sollution on MSDN about it. Anyone been there? I am not using .net so I need a native API sollution.

Thanks a lot!

flag
When you say "NULL TERMINATED STRING" do you mean a null terminated wchar_t string or a null terminated ASCII/Multi-byte character string? – Michael Burr Nov 3 '08 at 18:37

2 Answers

vote up 1 vote down

You should use WideCharToMultiByte. As an estimate for the output buffer size, you can use the Length field - but do consider the case of true multi-byte strings, in which case it will fail with ERROR_INSUFFICIENT_BUFFER, and you need to start over with a larger buffer. Or, you call it with an output buffer size of 0 first always, so it tells you the necessary size of the buffer.

link|flag
vote up 0 vote down

Take a look at the answers, and even the question, here:

http://stackoverflow.com/questions/117755/is-there-a-faster-way-of-getting-a-char-from-a-variantt-than-const-charbstrt

link|flag

Your Answer

Get an OpenID
or

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