Jump to content

CURSORINFO

From EDM2
Revision as of 23:53, 14 April 2025 by Martini (talk | contribs) (Created page with "Cursor-information structure. == Type == struct == C Declaration Method == typedef == Example Code == <pre> typedef struct _CURSORINFO { HWND hwnd; Window handle.: LONG x; X-coordinate.: LONG y; Y-coordinate.: LONG cx; Cursor width.: LONG cy; Cursor height.: ULONG fs; Options.: RECTL rclClip; Cursor box.: } CURSORINFO; typedef CURSORINFO *...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Cursor-information structure.

Type

struct

C Declaration Method

typedef

Example Code

typedef struct _CURSORINFO {
  HWND      hwnd;     /*  Window handle. */
  LONG      x;        /*  X-coordinate. */
  LONG      y;        /*  Y-coordinate. */
  LONG      cx;       /*  Cursor width. */
  LONG      cy;       /*  Cursor height. */
  ULONG     fs;       /*  Options. */
  RECTL     rclClip;  /*  Cursor box. */
} CURSORINFO;

typedef   CURSORINFO   * PCURSORINFO ;