USB_ID_STRING - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// usbioctl.h

typedef struct _USB_ID_STRING {
  USHORT LanguageId;
  USHORT Pad;
  ULONG  LengthInBytes;
  PWCHAR Buffer;
} USB_ID_STRING, *PUSB_ID_STRING;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-usbioctl-_usb_id_string)

_USB_ID_STRING structure

Description

The USB_ID_STRING structure is used to store a string or multi-string.

Members

LanguageId

Indicates that language ID of the string.

Pad

LengthInBytes

Indicates the length (in bytes) of the string pointed to by Buffer, including the terminating NULL.

Buffer

Pointer to a string or multi-string.

Remarks

The reserved members of this structure must be treated as opaque and are reserved for system use.

See also

USB Structures