// ufs.h
typedef struct _UFS_STRING_DESCRIPTOR {
UCHAR bLength;
UCHAR bDescriptorIDN;
WCHAR String[UFS_MAX_UNICODE_STRING_LEN];
} UFS_STRING_DESCRIPTOR, *PUFS_STRING_DESCRIPTOR;
View the official Windows Driver Kit DDI referenceNo description available.
The UFS_STRING_DESCRIPTOR structure describes either the Manufacturer Name, Product Name, OEM ID, or Serial Number as a string.
bLengthSpecifies the length, in bytes, of this descriptor.
bDescriptorIDNSpecifies the type of the descriptor. This descriptor will have a value of UFS_DESC_STRING_IDN.
StringContains either the Manufacturer Name, Product Name, OEM ID, or Serial Number as a string.