SWBLOCK: Difference between revisions
Appearance
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" |
(No difference)
|
Latest revision as of 16:36, 15 April 2025
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 ;