Jump to content

PARAM: Difference between revisions

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

Latest revision as of 19:20, 25 April 2025

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 ;