USEITEM: Difference between revisions
Appearance
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" |
(No difference)
|
Latest revision as of 03:10, 3 May 2025
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 ;