Jump to content

NOTEBOOKBUTTON

From EDM2
Revision as of 01:50, 21 April 2025 by Martini (talk | contribs) (Created page with "Notebook button data structure for use with the BKM_SETNOTEBOOKBUTTONS message. == Type == struct == C Declaration Method == typedef == Example Code == <pre> typedef struct _NOTEBOOKBUTTON { PSZ pszText; Button text: ULONG idButton; Button ID: LHANDLE hImage; Handle for button or icon.: LONG flStyle; Button style.: } NOTEBOOKBUTTON; typedef NOTEBOOKBUTTON * PNOTEBOOKBUTTON ; </pre> Category:Data...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Notebook button data structure for use with the BKM_SETNOTEBOOKBUTTONS message.

Type

struct

C Declaration Method

typedef

Example Code


typedef struct _NOTEBOOKBUTTON {
  PSZ         pszText;   /*  Button text */
  ULONG       idButton;  /*  Button ID */
  LHANDLE     hImage;    /*  Handle for button or icon. */
  LONG        flStyle;   /*  Button style. */
} NOTEBOOKBUTTON;

typedef   NOTEBOOKBUTTON   * PNOTEBOOKBUTTON ;