Jump to content

SWENTRY

From EDM2
Revision as of 16:37, 15 April 2025 by Martini (talk | contribs) (Created page with "Switch-list entry structure. == Type == struct == C Declaration Method == typedef == Example Code == <pre> typedef struct _SWENTRY { HSWITCH hswitch; Switch-list entry handle.: SWCNTRL swctl; Switch-list control block structure.: } SWENTRY; typedef SWENTRY * PSWENTRY ; </pre> Category:Data type")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Switch-list entry structure.

Type

struct

C Declaration Method

typedef

Example Code

typedef struct _SWENTRY {
  HSWITCH     hswitch;  /*  Switch-list entry handle. */
  SWCNTRL     swctl;    /*  Switch-list control block structure. */
} SWENTRY;

typedef   SWENTRY   * PSWENTRY ;