Jump to content

USEITEM

From EDM2
Revision as of 03:10, 3 May 2025 by Martini (talk | contribs) (Created page with "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== <PRE> typedef struct _USEITEM { ULONG type; The type of this item.: struct _USEITEM *pNext; Next item in the Use list.: } USEITEM; typedef USEITEM * PUSEITEM ; </PRE> Category:WPS Data type")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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 ;