Jump to content

SWBLOCK

From EDM2
Revision as of 16:36, 15 April 2025 by Martini (talk | contribs) (Created page with "Switch-list block structure. == Type == struct == C Declaration Method == typedef == Example Code == <pre> typedef struct _SWBLOCK { ULONG cswentry; Count of switch list entries.: SWENTRY aswentry[1]; Switch list entries.: } SWBLOCK; typedef SWBLOCK * PSWBLOCK ; </pre> Category:Data type")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Switch-list block structure.

Type

struct

C Declaration Method

typedef

Example Code


typedef struct _SWBLOCK {
  ULONG       cswentry;     /*  Count of switch list entries. */
  SWENTRY     aswentry[1];  /*  Switch list entries. */
} SWBLOCK;

typedef   SWBLOCK   * PSWBLOCK ;