summaryrefslogtreecommitdiffstats
path: root/winsup/w32api/include/winuser.h
diff options
context:
space:
mode:
authorDanny Smith <dannysmith@users.sourceforge.net>2003-08-29 08:01:09 +0000
committerDanny Smith <dannysmith@users.sourceforge.net>2003-08-29 08:01:09 +0000
commitb258e2c63b3e2287c50aa53a1ecf655fb98a32fe (patch)
tree7dac89f966136dd584281105ace0d6a5a467e4de /winsup/w32api/include/winuser.h
parent5a96b1cbffcd860b26a432e5df9079d1ae4db7b1 (diff)
downloadcygnal-b258e2c63b3e2287c50aa53a1ecf655fb98a32fe.tar.gz
cygnal-b258e2c63b3e2287c50aa53a1ecf655fb98a32fe.tar.bz2
cygnal-b258e2c63b3e2287c50aa53a1ecf655fb98a32fe.zip
2003-08-29 Steve Cleary <scleary@jerviswebb.com>
* include/winuser.h (QS_ALLPOSTMESSAGE, QS_RAWINPUT): Add defines. (QS_INPUT, QS_ALLINPUT, QS_ALLEVENTS): Adjust by OR'ing with QS_RAWINPUT for XP. (MWMO_*): Add flags. * include/wincrypt.h (MS_ENHANCED_PROV[AW], MS_STRONG_PROV[AW], MS_DEF_RSA_SIG_PROV[AW], MS_DEF_RSA_SCHANNEL_PROV[AW], MS_DEF_DSS_PROV[AW], MS_DEF_DSS_DH_PROV[AW], MS_ENH_DSS_DH_PROV[AW], MS_DEF_DH_SCHANNEL_PROV[AW], MS_SCARD_PROV[AW]): Add definitions.
Diffstat (limited to 'winsup/w32api/include/winuser.h')
-rw-r--r--winsup/w32api/include/winuser.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/winsup/w32api/include/winuser.h b/winsup/w32api/include/winuser.h
index b811743be..4d0c8d167 100644
--- a/winsup/w32api/include/winuser.h
+++ b/winsup/w32api/include/winuser.h
@@ -744,18 +744,34 @@ extern "C" {
#define DWLP_MSGRESULT 0
#define DWL_USER 8
#define DWLP_USER 8
+#if (_WIN32_WINNT >= 0x0501)
+#define QS_ALLEVENTS 1215
+#define QS_ALLINPUT 1279
+#else
#define QS_ALLEVENTS 191
#define QS_ALLINPUT 255
+#endif
+#define QS_ALLPOSTMESSAGE 256
#define QS_HOTKEY 128
+#if (_WIN32_WINNT >= 0x0501)
+#define QS_INPUT 1031
+#else
#define QS_INPUT 7
+#endif
#define QS_KEY 1
#define QS_MOUSE 6
#define QS_MOUSEBUTTON 4
#define QS_MOUSEMOVE 2
#define QS_PAINT 32
#define QS_POSTMESSAGE 8
+#if (_WIN32_WINNT >= 0x0501)
+#define QS_RAWINPUT 1024
+#endif
#define QS_SENDMESSAGE 64
#define QS_TIMER 16
+#define MWMO_WAITALL 1
+#define MWMO_ALERTABLE 2
+#define MWMO_INPUTAVAILABLE 4
#define COLOR_3DDKSHADOW 21
#define COLOR_3DFACE 15
#define COLOR_3DHILIGHT 20