Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Contains a Unicode string.
Syntax
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;
Members
Length
Must be set to the number of bytes in Buffer containing the string, not including the NULL terminator.
MaximumLength
This MUST be set to the total number of bytes in Buffer, not including the NULL terminator.
Buffer
Must be a Unicode string.