Added some missing manifest constants for Queue Status functions (QS_????).
diff --git a/include/winuser.h b/include/winuser.h
index 1444485..5897f3a 100644
--- a/include/winuser.h
+++ b/include/winuser.h
@@ -2653,7 +2653,10 @@
#define QS_TIMER 0x0010
#define QS_PAINT 0x0020
#define QS_SENDMESSAGE 0x0040
-#define QS_ALLINPUT 0x007f
+#define QS_HOTKEY 0x0080
+#define QS_INPUT (QS_MOUSE | QS_KEY)
+#define QS_ALLEVENTS (QS_INPUT | QS_POSTMESSAGE | QS_TIMER | QS_PAINT | QS_HOTKEY)
+#define QS_ALLINPUT (QS_ALLEVENTS | QS_SENDMESSAGE)
#define DDL_READWRITE 0x0000
#define DDL_READONLY 0x0001