Jump to content

MLEOVERFLOW

From EDM2
Revision as of 00:14, 15 April 2025 by Martini (talk | contribs) (Created page with "Overflow error structure for multiline entry field. == Type == struct == C Declaration Method == typedef == Example Code == <pre> typedef struct _MLEOVERFLOW { ULONG afErrInd; One or more EFR_* flags.: LONG nBytesOver; Number of bytes over the limit.: LONG pixHorzOver; Number of pels over the horizontal limit.: LONG pixVertOver; Number of pels over the vertical limit.: } MLEOVERFLOW; typedef MLEOVERFLOW *...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Overflow error structure for multiline entry field.

Type

struct

C Declaration Method

typedef

Example Code

typedef struct _MLEOVERFLOW {
  ULONG     afErrInd;     /*  One or more EFR_* flags. */
  LONG      nBytesOver;   /*  Number of bytes over the limit. */
  LONG      pixHorzOver;  /*  Number of pels over the horizontal limit. */
  LONG      pixVertOver;  /*  Number of pels over the vertical limit. */
} MLEOVERFLOW;

typedef   MLEOVERFLOW   * POVERFLOW ;