* include/winuser.h [_WIN32_WINNT >= 0x0501] (EVENT_*, CONSOLE_*):

Add constants, related to Console Accessibility.
This commit is contained in:
Dimitri Papadopoulos 2003-10-03 11:38:07 +00:00
parent 4fd4d446d6
commit b9c5ea438c
2 changed files with 61 additions and 44 deletions

View File

@ -1,3 +1,8 @@
2003-10-03 Dimitri Papadopoulos <papadopo@users.sourceforge.net>
* include/winuser.h [_WIN32_WINNT >= 0x0501] (EVENT_*, CONSOLE_*):
Add constants, related to Console Accessibility.
2003-10-03 Dimitri Papadopoulos <papadopo@users.sourceforge.net>
* include/winuser.h [WINVER >= 0x0500] (EVENT_MAX): Ooops...

View File

@ -2138,6 +2138,18 @@ extern "C" {
#define EVENT_OBJECT_HELPCHANGE 0x00008010
#define EVENT_OBJECT_DEFACTIONCHANGE 0x00008011
#define EVENT_OBJECT_ACCELERATORCHANGE 0x00008012
#if (_WIN32_WINNT >= 0x0501)
#define EVENT_CONSOLE_CARET 0x00004001
#define CONSOLE_CARET_SELECTION 0x00000001
#define CONSOLE_CARET_VISIBLE 0x00000002
#define EVENT_CONSOLE_UPDATE_REGION 0x00004002
#define EVENT_CONSOLE_UPDATE_SIMPLE 0x00004003
#define EVENT_CONSOLE_UPDATE_SCROLL 0x00004004
#define EVENT_CONSOLE_LAYOUT 0x00004005
#define EVENT_CONSOLE_START_APPLICATION 0x00004006
#define CONSOLE_APPLICATION_16BIT 0x00000001
#define EVENT_CONSOLE_END_APPLICATION 0x00004007
#endif /* (_WIN32_WINNT >= 0x0501) */
#define EVENT_MAX 0x7fffffff
#endif /* (WINVER >= 0x0500) */
#if (_WIN32_WINNT >= 0x0500 || _WIN32_WINDOWS >= 0x0490)