Jump to content

MENUITEM

From EDM2
Revision as of 19:03, 25 April 2025 by Martini (talk | contribs) (Created page with "Menu item. == Type == struct == C Declaration Method == typedef == Example Code == <pre> typedef struct _MENUITEM { SHORT iPosition; Position.: USHORT afStyle; Style.: USHORT afAttribute; Attribute.: USHORT id; Identity.: HWND hwndSubMenu; Submenu.: ULONG hItem; Item.: } MENUITEM; typedef MENUITEM * PMENUITEM ; </pre> Category:Data type")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Menu item.

Type

struct

C Declaration Method

typedef

Example Code

typedef struct _MENUITEM {
  SHORT      iPosition;    /*  Position. */
  USHORT     afStyle;      /*  Style. */
  USHORT     afAttribute;  /*  Attribute. */
  USHORT     id;           /*  Identity. */
  HWND       hwndSubMenu;  /*  Submenu. */
  ULONG      hItem;        /*  Item. */
} MENUITEM;

typedef   MENUITEM   * PMENUITEM ;