ODJ_UNICODE_STRING structure
Contains a Unicode string.
typedef struct _ODJ_UNICODE_STRING
{
USHORT Length;
USHORT MaximumLength;
[size_is(MaximumLength/2), length_is(Length/2)] PWSTR Buffer;
} ODJ_UNICODE_STRING, *PODJ_UNICODE_STRING;
Must be set to the number of bytes in Buffer containing the string, not including the NULL terminator.
This MUST be set to the total number of bytes in Buffer, not including the NULL terminator.
Must be a Unicode string.