diff --git a/rtl/win/wininc/struct.inc b/rtl/win/wininc/struct.inc index 7d150fea3e..61fc9d704e 100644 --- a/rtl/win/wininc/struct.inc +++ b/rtl/win/wininc/struct.inc @@ -988,7 +988,6 @@ Const _CONSOLE_CURSOR_INFO = CONSOLE_CURSOR_INFO; TCONSOLECURSORINFO = CONSOLE_CURSOR_INFO; PCONSOLECURSORINFO = ^CONSOLE_CURSOR_INFO; - TCURSORINFO = CONSOLE_CURSOR_INFO; COORD = record X : SHORT; @@ -7498,6 +7497,15 @@ type PGRADIENT_RECT = ^_GRADIENT_RECT; LPGRADIENT_RECT = PGRADIENT_RECT; + CURSORINFO = record + cbSize : DWORD; + flags : DWORD; + hCursor : HCURSOR; + ptScreenPos : POINT; + end; + PCURSORINFO = ^CURSORINFO; + TCURSORINFO = CURSORINFO; + const SECURITY_DESCRIPTOR_MIN_LENGTH = SIZEOF(SECURITY_DESCRIPTOR);