NDIS_PM_COUNTED_STRING structure (ntddndis.h)

The NDIS_PM_COUNTED_STRING structure specifies a limited size string that is used in power management structures.

Syntax

typedef struct _NDIS_PM_COUNTED_STRING {
  USHORT Length;
  WCHAR  String[NDIS_PM_MAX_STRING_SIZE + 1];
} NDIS_PM_COUNTED_STRING, *PNDIS_PM_COUNTED_STRING;

Members

Length

The length, in bytes, of the string.

String[NDIS_PM_MAX_STRING_SIZE + 1]

A WCHAR array that contains a NULL-terminated string that is limited to a maximum size of NDIS_PM_MAX_STRING_SIZE.

Remarks

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.

Requirements

Requirement Value
Minimum supported client Supported in NDIS 6.20 and later.
Header ntddndis.h (include Ntddndis.h)

See also

NDIS_PM_PROTOCOL_OFFLOAD

NDIS_PM_WOL_PATTERN