#ifndef _PHNT_NTDEF_H
#ifndef _NTDEF_
typedef struct _UNICODE_STRING
{
USHORT Length;
USHORT MaximumLength;
_Field_size_bytes_part_opt_(MaximumLength, Length) PWCH Buffer;
} UNICODE_STRING, *PUNICODE_STRING;
View code on GitHub
This structure is documented in Windows Driver Kit.