// ntddndis.h
typedef struct _NDIS_PM_COUNTED_STRING {
USHORT Length;
WCHAR String[NDIS_PM_MAX_STRING_SIZE + 1];
} NDIS_PM_COUNTED_STRING, *PNDIS_PM_COUNTED_STRING;
View the official Windows Driver Kit DDI reference
No description available.
The NDIS_PM_COUNTED_STRING structure specifies a limited size string that is used in power management structures.
Length
The length, in bytes, of the string.
String
A WCHAR array that contains a NULL-terminated string that is limited to a maximum size of NDIS_PM_MAX_STRING_SIZE.
The NDIS_PM_COUNTED_STRING structure specifies a limited size string that is used in the NDIS_PM_PROTOCOL_OFFLOAD and NDIS_PM_WOL_PATTERN power management structures to define name strings.