Jump to content

DELETENOTIFY

From EDM2
Revision as of 01:48, 21 April 2025 by Martini (talk | contribs) (Created page with "Structure that contains information about the application page that is being deleted from a notebook. == Type == struct == C Declaration Method == typedef == Example Code == <pre> typedef struct _DELETENOTIFY { HWND hwndBook; Notebook window handle.: HWND hwndPage; Application page window handle.: ULONG ulAppPageData; Application-specified page data.: HBITMAP hbmTab; /* Application-specified tab b...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Structure that contains information about the application page that is being deleted from a notebook.

Type

struct

C Declaration Method

typedef

Example Code

typedef struct _DELETENOTIFY {
  HWND        hwndBook;       /*  Notebook window handle. */
  HWND        hwndPage;       /*  Application page window handle. */
  ULONG       ulAppPageData;  /*  Application-specified page data. */
  HBITMAP     hbmTab;         /*  Application-specified tab bit map. */
} DELETENOTIFY;

typedef   DELETENOTIFY   * PDELETENOTIFY ;