GetCaretBlinkTime function user32

Win32Result<int> GetCaretBlinkTime()

Retrieves the time required to invert the caret's pixels.

The user can set this value.

To learn more, see learn.microsoft.com/windows/win32/api/winuser/nf-winuser-getcaretblinktime.

Implementation

Win32Result<int> GetCaretBlinkTime() {
  resolveGetLastError();
  final result_ = _GetCaretBlinkTime();
  return .new(value: result_, error: GetLastError());
}