Jump to content

PARAM

From EDM2
Revision as of 19:20, 25 April 2025 by Martini (talk | contribs) (Created page with "Presentation parameter attribute definition. == Type == struct == C Declaration Method == typedef == Example Code == <pre> typedef struct _PARAM { ULONG id; Attribute type identity.: ULONG cb; Byte count of the ab parameter.: BYTE ab[1]; Attribute value.: } PARAM; typedef PARAM * PPARAM ; </pre> Category:Data type")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Presentation parameter attribute definition.

Type

struct

C Declaration Method

typedef

Example Code

typedef struct _PARAM {
  ULONG     id;     /* Attribute type identity. */
  ULONG     cb;     /* Byte count of the ab parameter. */
  BYTE      ab[1];  /* Attribute value. */
} PARAM;

typedef   PARAM   * PPARAM ;