UnregisterTouchWindow function user32

Win32Result<bool> UnregisterTouchWindow(
  1. HWND hwnd
)

Registers a window as no longer being touch-capable.

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

Implementation

Win32Result<bool> UnregisterTouchWindow(HWND hwnd) {
  final result_ = UnregisterTouchWindow_Wrapper(hwnd);
  return Win32Result(value: result_.value.i32 != FALSE, error: result_.error);
}