Jump to content

NOTIFYDELTA

From EDM2
Revision as of 00:32, 21 April 2025 by Martini (talk | contribs) (Created page with "Structure that contains information about the placement of delta information for a container. This structure is used in the CN_QUERYDELTA container notification code only. == Type == struct == C Declaration Method == typedef == Example Code == <pre> typedef struct _NOTIFYDELTA { HWND hwndCnr; Container control handle.: ULONG fDelta; Placement of delta information.: } NOTIFYDELTA; typedef NOTIFYDELTA * PNOTIFYDELTA ; </pre> Categ...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Structure that contains information about the placement of delta information for a container. This structure is used in the CN_QUERYDELTA container notification code only.

Type

struct

C Declaration Method

typedef

Example Code

typedef struct _NOTIFYDELTA {
  HWND      hwndCnr;  /*  Container control handle. */
  ULONG     fDelta;   /*  Placement of delta information. */
} NOTIFYDELTA;

typedef   NOTIFYDELTA   * PNOTIFYDELTA ;