IF_COUNTED_STRING_LH estructura (ifdef.h)

La estructura IF_COUNTED_STRING especifica una cadena contada para las interfaces NDIS.

Sintaxis

typedef struct _IF_COUNTED_STRING_LH {
  USHORT Length;
  WCHAR  String[IF_MAX_STRING_SIZE + 1];
} IF_COUNTED_STRING_LH, *PIF_COUNTED_STRING_LH;

Miembros

Length

Valor de USHORT que contiene la longitud, en bytes, de la cadena.

String[IF_MAX_STRING_SIZE + 1]

Un búfer WCHAR que contiene la cadena. La cadena no necesita terminar en null.

Comentarios

La estructura IF_COUNTED_STRING es el tipo de datos de varias estructuras de cadena NDIS, como NDIS_IF_COUNTED_STRING.

Si la cadena está terminada en NULL, el miembro Length no debe incluir el carácter NULL de terminación.

Requisitos

Requisito Value
Cliente mínimo compatible Compatible con NDIS 6.0 y versiones posteriores.
Encabezado ifdef.h (include Ntddndis.h)