Jump to content

PRESPARAMS

From EDM2
Revision as of 19:22, 25 April 2025 by Martini (talk | contribs) (Created page with "Presentation parameter data. == Type == struct == C Declaration Method == typedef == Example Code == <pre> typedef struct _PRESPARAMS { ULONG cb; Length of the aparam parameter, in bytes.: PARAM aparam[1]; Array of presentation attribute parameters.: } PRESPARAMS; typedef PRESPARAMS * PPRESPARAMS ; </pre> Category:Data type")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Presentation parameter data.

Type

struct

C Declaration Method

typedef

Example Code

typedef struct _PRESPARAMS {
  ULONG     cb;         /* Length of the aparam parameter, in bytes. */
  PARAM     aparam[1];  /* Array of presentation attribute parameters. */
} PRESPARAMS;

typedef   PRESPARAMS   * PPRESPARAMS ;