• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

The MinGW.org Windows System Libraries


Commit MetaInfo

Revision67016f971a00001a3a0c7d7a330ad227d32f83f1 (tree)
Time2013-09-29 01:38:01
AuthorEarnie Boyd <earnie@user...>
CommiterEarnie Boyd

Log Message

[#2017] Add MOD_NOREPEAT for Windows 7.

Change Summary

Incremental Difference

--- a/ChangeLog
+++ b/ChangeLog
@@ -19,6 +19,11 @@ RELEASE 4.1:
1919 * include/winsock.h: Ditto.
2020 * include/winsock2.h: Ditto.
2121
22+ MOD_NOREPEAT missing [#2017]
23+
24+ * include/winuser.h: Add MOD_NOREPEAT define for Windows 7.
25+ Adjust some whitespace and add a few comments.
26+
2227 2013-09-27 Earnie Boyd <earnie@users.sourceforge.net>
2328
2429 Manage issue [#2018] and miscellaneous changes.
--- a/include/winuser.h
+++ b/include/winuser.h
@@ -3724,6 +3724,7 @@ typedef __AW(NONCLIENTMETRICS) NONCLIENTMETRICS,*LPNONCLIENTMETRICS;
37243724
37253725 #endif /* RC_INVOKED */
37263726
3727+/* WIN98 */
37273728 #if (_WIN32_WINNT >= 0x0410)
37283729 #define DC_GRADIENT 0x00000020
37293730 #define TPM_RECURSE 1
@@ -3771,6 +3772,7 @@ WINUSERAPI BOOL WINAPI EnumDisplaySettingsExW(LPCWSTR,DWORD,LPDEVMODEW,DWORD);
37713772
37723773 #endif /* (_WIN32_WINNT >= 0x0410) */
37733774
3775+/* WINME */
37743776 #if (_WIN32_WINNT >= 0x0490)
37753777 #define ASFW_ANY ((DWORD)-1)
37763778 #define LSFW_LOCK 1
@@ -3792,6 +3794,7 @@ WINUSERAPI BOOL WINAPI LockSetForegroundWindow(UINT);
37923794
37933795 #endif /* (_WIN32_WINNT >= 0x0490) */
37943796
3797+/* WIN2K */
37953798 #if (_WIN32_WINNT >= 0x0500)
37963799 #define CF_DIBV5 17
37973800 #undef CF_MAX
@@ -4007,6 +4010,7 @@ WINUSERAPI BOOL WINAPI UpdateLayeredWindow(HWND,HDC,POINT*,SIZE*,HDC,POINT*,COLO
40074010
40084011 #endif /* (_WIN32_WINNT >= 0x0500) */
40094012
4013+/* XP */
40104014 #if (_WIN32_WINNT >= 0x0501)
40114015 #define BSF_LUID 0x00000400
40124016 #define BSF_RETURNHDESK 0x00000200
@@ -4227,6 +4231,7 @@ WINUSERAPI BOOL WINAPI GetLayeredWindowAttributes(HWND,COLORREF*,BYTE*,DWORD*);
42274231 #define QS_INPUT 7
42284232 #endif /* (_WIN32_WINNT >= 0x0501) */
42294233
4234+/* VISTA */
42304235 #if (_WIN32_WINNT >= 0x0600)
42314236 #define PBT_POWERSETTINGCHANGE 32787
42324237
@@ -4254,20 +4259,22 @@ WINUSERAPI BOOL WINAPI UnregisterPowerSettingNotification(HPOWERNOTIFY);
42544259
42554260 #endif /* (_WIN32_WINNT >= 0x0600) */
42564261
4262+/* WIN7 */
42574263 #if (_WIN32_WINNT >= 0x0601)
4258-#define WM_TOUCHMOVE 576
4259-#define WM_TOUCHDOWN 577
4260-#define WM_TOUCHUP 578
4261-#define TOUCHEVENTF_DOWN 0x0001
4262-#define TOUCHEVENTF_INRANGE 0x0008
4263-#define TOUCHEVENTF_MOVE 0x0002
4264-#define TOUCHEVENTF_NOCOALESCE 0x0020
4265-#define TOUCHEVENTF_PALM 0x0080
4266-#define TOUCHEVENTF_PEN 0x0040
4267-#define TOUCHEVENTF_PRIMARY 0x0010
4268-#define TOUCHEVENTF_UP 0x0004
4264+#define MOD_NOREPEAT 0x4000
4265+#define WM_TOUCHMOVE 0x0240
4266+#define WM_TOUCHDOWN 0x0241
4267+#define WM_TOUCHUP 0x0242
4268+#define TOUCHEVENTF_DOWN 0x0001
4269+#define TOUCHEVENTF_INRANGE 0x0008
4270+#define TOUCHEVENTF_MOVE 0x0002
4271+#define TOUCHEVENTF_NOCOALESCE 0x0020
4272+#define TOUCHEVENTF_PALM 0x0080
4273+#define TOUCHEVENTF_PEN 0x0040
4274+#define TOUCHEVENTF_PRIMARY 0x0010
4275+#define TOUCHEVENTF_UP 0x0004
42694276 #define TOUCHEVENTMASKF_CONTACTAREA 0x0004
4270-#define TOUCHEVENTMASKF_EXTRAINFO 0x0002
4277+#define TOUCHEVENTMASKF_EXTRAINFO 0x0002
42714278 #define TOUCHEVENTMASKF_TIMEFROMSYSTEM 0x0001
42724279
42734280 #ifndef RC_INVOKED