Jump to content

SWENTRY: Difference between revisions

From EDM2
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"
 
(No difference)

Latest revision as of 16:37, 15 April 2025

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 ;