IsTouchWindow function user32

int IsTouchWindow(
  1. int hwnd,
  2. Pointer<Uint32> pulFlags
)

Checks whether a specified window is touch-capable and, optionally, retrieves the modifier flags set for the window's touch capability.

BOOL IsTouchWindow(
  HWND   hwnd,
  PULONG pulFlags
);

Implementation

int IsTouchWindow(int hwnd, Pointer<Uint32> pulFlags) =>
    _IsTouchWindow(hwnd, pulFlags);