Title: [187037] trunk/Source/WebCore
Revision
187037
Author
achristen...@apple.com
Date
2015-07-20 14:43:13 -0700 (Mon, 20 Jul 2015)

Log Message

[Win] Unreviewed build fix after r187022.

* platform/win/WindowsTouch.h:
Undid changes from r187022

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (187036 => 187037)


--- trunk/Source/WebCore/ChangeLog	2015-07-20 21:37:18 UTC (rev 187036)
+++ trunk/Source/WebCore/ChangeLog	2015-07-20 21:43:13 UTC (rev 187037)
@@ -1,3 +1,10 @@
+2015-07-20  Alex Christensen  <achristen...@webkit.org>
+
+        [Win] Unreviewed build fix after r187022.
+
+        * platform/win/WindowsTouch.h:
+        Undid changes from r187022
+
 2015-07-20  Jeremy Jones  <jere...@apple.com>
 
         Allow video to rotate when app doesnt allow rotation.

Modified: trunk/Source/WebCore/platform/win/WindowsTouch.h (187036 => 187037)


--- trunk/Source/WebCore/platform/win/WindowsTouch.h	2015-07-20 21:37:18 UTC (rev 187036)
+++ trunk/Source/WebCore/platform/win/WindowsTouch.h	2015-07-20 21:43:13 UTC (rev 187037)
@@ -71,4 +71,42 @@
 #define GC_PRESSANDTAP 0x00000001
 #define GC_ROLLOVER GC_PRESSANDTAP
 
+// GESTUREINFO struct definition
+typedef struct tagGESTUREINFO {
+    UINT cbSize;                    // size, in bytes, of this structure (including variable length Args field)
+    DWORD dwFlags;                  // see GF_* flags
+    DWORD dwID;                     // gesture ID, see GID_* defines
+    HWND hwndTarget;                // handle to window targeted by this gesture
+    POINTS ptsLocation;             // current location of this gesture
+    DWORD dwInstanceID;             // internally used
+    DWORD dwSequenceID;             // internally used
+    ULONGLONG ullArguments;         // arguments for gestures whose arguments fit in 8 BYTES
+    UINT cbExtraArgs;               // size, in bytes, of extra arguments, if any, that accompany this gesture
+} GESTUREINFO, *PGESTUREINFO;
+typedef GESTUREINFO const * PCGESTUREINFO;
+
+// GESTURECONFIG struct defintion
+typedef struct tagGESTURECONFIG {
+    DWORD dwID;                     // gesture ID
+    DWORD dwWant;                   // settings related to gesture ID that are to be turned on
+    DWORD dwBlock;                  // settings related to gesture ID that are to be turned off
+} GESTURECONFIG, *PGESTURECONFIG;
+
+/*
+ * Gesture notification structure
+ *   - The WM_GESTURENOTIFY message lParam contains a pointer to this structure.
+ *   - The WM_GESTURENOTIFY message notifies a window that gesture recognition is
+ *     in progress and a gesture will be generated if one is recognized under the
+ *     current gesture settings.
+ */
+typedef struct tagGESTURENOTIFYSTRUCT {
+    UINT cbSize;                    // size, in bytes, of this structure
+    DWORD dwFlags;                  // unused
+    HWND hwndTarget;                // handle to window targeted by the gesture
+    POINTS ptsLocation;             // starting location
+    DWORD dwInstanceID;             // internally used
+} GESTURENOTIFYSTRUCT, *PGESTURENOTIFYSTRUCT;
+
+DECLARE_HANDLE(HGESTUREINFO);
+
 #endif
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to