Jump to content

OWNERITEM

From EDM2
Revision as of 16:34, 15 April 2025 by Martini (talk | contribs) (Created page with "Owner item. == Type == struct == C Declaration Method == typedef == Example Code == <pre> typedef struct _OWNERITEM { HWND hwnd; Window handle.: HPS hps; Presentation-space handle.: ULONG fsState; State.: ULONG fsAttribute; Attribute.: ULONG fsStateOld; Old state.: ULONG fsAttributeOld; Old attribute.: RECTL rclItem; Item rectangle.: ...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Owner item.

Type

struct

C Declaration Method

typedef

Example Code


typedef struct _OWNERITEM {
  HWND      hwnd;            /*  Window handle. */
  HPS       hps;             /*  Presentation-space handle. */
  ULONG     fsState;         /*  State. */
  ULONG     fsAttribute;     /*  Attribute. */
  ULONG     fsStateOld;      /*  Old state. */
  ULONG     fsAttributeOld;  /*  Old attribute. */
  RECTL     rclItem;         /*  Item rectangle. */
  LONG      idItem;          /*  Item identity. */
  ULONG     hItem;           /*  Item. */
} OWNERITEM;

typedef   OWNERITEM   * POWNERITEM ;