NDIS_OBJECT_HEADER (Compact 7)

3/12/2014

This structure packages the object type, version, and size information that is required in many NDIS 6.0 structures.

Syntax

typedef struct _NDIS_OBJECT_HEADER {
  UCHAR  Type;
  UCHAR  Revision;
  USHORT  Size;
} NDIS_OBJECT_HEADER, *PNDIS_OBJECT_HEADER;

Members

  • Type
    Specifies the type of NDIS object that a structure describes.
  • Revision
    Specifies the revision number of this structure.
  • Size
    Specifies the total size, in bytes, of the NDIS structure that contains the NDIS_OBJECT_HEADER. This size includes the size of the NDIS_OBJECT_HEADER member and all other members of the structure.

Remarks

The reference page for every structure, that has an NDIS_OBJECT_HEADER structure as a member, defines values for the Type, Revision, and Size members for that structure.

Requirements

Header

ntddndis.h

See Also

Reference

NDIS Object Interface