IOCTL_VERB_PROCESS_GESTURE (Compact 2013)

3/28/2014

This I/O control message passes the gesture handle to the gesture server. Send this message with DeviceIoControl.

Syntax

BOOL DeviceIoControl(
    HANDLE hDevice,           // handle to the device
    DWORD dwIoControlCode,    // use IOCTL_VERB_PROCESS_GESTURE
    LPVOID lpInBuffer,        // pointer to input buffer
    DWORD nInBufferSize,      // input buffer size
    LPVOID lpOutBuffer,       // pointer to output buffer
    DWORD nOutBufferSize,     // output buffer size
    LPDWORD lpBytesReturned,  // number of bytes returned
    OVERLAPPED lpOverlapped,  // pointer to OVERLAPPED structure
);

Parameters

  • hDevice
    [in] Handle to the device.
  • dwIoControlCode
    [in] The control code for the operation. Use IOCTL_VERB_PROCESS_GESTURE for this operation.
  • lpInBuffer
    [in] Set to the gesture handle.
  • nInBufferSize
    [in] Set to the size of the gesture handle.

Requirements

Header

touchgesture.h

See Also

Reference

Gesture IOCTL
Gesture Reference