Use-item data structure.

The USEITEM structure is always followed by a type-specific structure that is indicated by the type field.

typedef struct _USEITEM {
  ULONG                 type;   /*  The type of this item. */
  struct _USEITEM      *pNext;  /*  Next item in the Use list. */
} USEITEM;

typedef   USEITEM   * PUSEITEM ;


[Back] [Next]