Fixed a bug in IsConsoleHandle which was introduced by r16540.

svn path=/trunk/; revision=16556
This commit is contained in:
Hartmut Birr 2005-07-13 17:32:39 +00:00
parent d31647b31f
commit 7a0a377edd

View file

@ -24,7 +24,7 @@
#endif
#define IsConsoleHandle(h) \
((((ULONG)h) & 0x10000003) == 0x3) ? TRUE : FALSE
(((((ULONG)h) & 0x10000003) == 0x3) ? TRUE : FALSE)
#define HANDLE_DETACHED_PROCESS (HANDLE)-1
#define HANDLE_CREATE_NEW_CONSOLE (HANDLE)-2