Jump to content

PAGESELECTNOTIFY: Difference between revisions

From EDM2
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"
 
(No difference)

Latest revision as of 00:49, 21 April 2025

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 ;