Jump to content

PROGTYPE

From EDM2
Revision as of 16:36, 15 April 2025 by Martini (talk | contribs) (Created page with "Program-type structure. == Type == struct == C Declaration Method == typedef == Example Code == <pre> typedef struct _PROGTYPE { PROGCATEGORY progc; Program category:: ULONG fbVisible; Visibility attribute.: } PROGTYPE; typedef PROGTYPE * PPROGTYPE ; </pre> Category:Data type")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Program-type structure.

Type

struct

C Declaration Method

typedef

Example Code

typedef struct _PROGTYPE {
  PROGCATEGORY     progc;      /*  Program category: */
  ULONG            fbVisible;  /*  Visibility attribute. */
} PROGTYPE;

typedef   PROGTYPE   * PPROGTYPE ;