CURSORINFO: Difference between revisions
Appearance
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 *..." |
(No difference)
|
Latest revision as of 22:53, 14 April 2025
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 ;