GetGestureConfig function user32

int GetGestureConfig(
  1. int hwnd,
  2. int dwReserved,
  3. int dwFlags,
  4. Pointer<Uint32> pcIDs,
  5. Pointer<GESTURECONFIG> pGestureConfig,
  6. int cbSize
)

Retrieves the configuration for which Windows Touch gesture messages are sent from a window.

BOOL GetGestureConfig(
  HWND           hwnd,
  DWORD          dwReserved,
  DWORD          dwFlags,
  PUINT          pcIDs,
  PGESTURECONFIG pGestureConfig,
  UINT           cbSize
);

Implementation

int GetGestureConfig(
        int hwnd,
        int dwReserved,
        int dwFlags,
        Pointer<Uint32> pcIDs,
        Pointer<GESTURECONFIG> pGestureConfig,
        int cbSize) =>
    _GetGestureConfig(hwnd, dwReserved, dwFlags, pcIDs, pGestureConfig, cbSize);