Jump to content

ESCMODE

From EDM2
Revision as of 19:13, 25 April 2025 by Martini (talk | contribs) (Created page with "Structure for setting printer mode. See GreEscape DEVESC_SETMODE This data structure is a more general version of the of the ESCSETMODEdata structure. == Type == struct == C Declaration Method == typedef == Example Code == <pre> typedef struct _ESCMODE { ULONG mode; Mode.: BYTE modedata[1]; Mode data.: } ESCMODE; typedef ESCMODE * PESCMODE ; </pre> Category:Data type")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Structure for setting printer mode. See GreEscape DEVESC_SETMODE This data structure is a more general version of the of the ESCSETMODEdata structure.

Type

struct

C Declaration Method

typedef

Example Code

typedef struct _ESCMODE {
  ULONG     mode;         /* Mode. */
  BYTE      modedata[1];  /* Mode data. */
} ESCMODE;

typedef   ESCMODE   * PESCMODE ;