Jump to content

PAGESELECTNOTIFY

From EDM2
Revision as of 01:49, 21 April 2025 by Martini (talk | contribs) (Created page with "Structure that contains information about the application page being selected. == Type == struct == C Declaration Method == typedef == Example Code == <pre> typedef struct _PAGESELECTNOTIFY { HWND hwndBook; Notebook window handle.: ULONG ulPageIdCur; Current top page identifier.: ULONG ulPageIdNew; New top page identifier.: } PAGESELECTNOTIFY; typedef PAGESELECTNOTIFY * PPAGESELECTNOTIFY ; </pre> Category:Data type")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Structure that contains information about the application page being selected.

Type

struct

C Declaration Method

typedef

Example Code

typedef struct _PAGESELECTNOTIFY {
  HWND      hwndBook;     /*  Notebook window handle. */
  ULONG     ulPageIdCur;  /*  Current top page identifier. */
  ULONG     ulPageIdNew;  /*  New top page identifier. */
} PAGESELECTNOTIFY;

typedef   PAGESELECTNOTIFY   * PPAGESELECTNOTIFY ;