USEITEM
Appearance
Use-item data structure.
The USEITEM structure is always followed by a type-specific structure that is indicated by the type field.
Type
struct
C Declaration Method
typedef struct
Example Code
typedef struct _USEITEM {
ULONG type; /* The type of this item. */
struct _USEITEM *pNext; /* Next item in the Use list. */
} USEITEM;
typedef USEITEM * PUSEITEM ;