Jump to content

NOTIFYRECORDEMPHASIS

From EDM2
Revision as of 00:33, 21 April 2025 by Martini (talk | contribs) (Created page with "Structure that contains information about emphasis that is being applied to a container record. This structure is used in the CN_EMPHASIS container notification code only. == Type == struct == C Declaration Method == typedef == Example Code == <pre> typedef struct _NOTIFYRECORDEMPHASIS { HWND hwndCnr; Container control handle.: PRECORDCORE pRecord; /* Pointer to a RECORDCORE data structure whose emphasis attribute has been c...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Structure that contains information about emphasis that is being applied to a container record. This structure is used in the CN_EMPHASIS container notification code only.

Type

struct

C Declaration Method

typedef

Example Code

typedef struct _NOTIFYRECORDEMPHASIS {
  HWND            hwndCnr;        /*  Container control handle. */
  PRECORDCORE     pRecord;        /*  Pointer to a RECORDCORE data structure whose emphasis attribute has been changed. */
  ULONG           fEmphasisMask;  /*  Changed emphasis attributes. */
} NOTIFYRECORDEMPHASIS;

typedef   NOTIFYRECORDEMPHASIS   * PNOTIFYRECORDEMPHASIS ;