Jump to content

NOTIFYRECORDENTER

From EDM2
Revision as of 00:34, 21 April 2025 by Martini (talk | contribs) (Created page with "Structure that contains information about the input device that is being used with the container control. This structure is used in the CN_ENTER container notification code only. == Type == struct == C Declaration Method == typedef == Example Code == <pre> typedef struct _NOTIFYRECORDENTER { HWND hwndCnr; Container control handle.: ULONG fKey; Flag.: PRECORDCORE pRecord; /* Pointer to the RECORDCORE data structure over...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Structure that contains information about the input device that is being used with the container control. This structure is used in the CN_ENTER container notification code only.

Type

struct

C Declaration Method

typedef

Example Code

typedef struct _NOTIFYRECORDENTER {
  HWND            hwndCnr;  /*  Container control handle. */
  ULONG           fKey;     /*  Flag. */
  PRECORDCORE     pRecord;  /*  Pointer to the RECORDCORE data structure over which an action occurred. */
} NOTIFYRECORDENTER;

typedef   NOTIFYRECORDENTER   * PNOTIFYRECORDENTER ;