mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
Fixed a bug in IsConsoleHandle which was introduced by r16540.
svn path=/trunk/; revision=16556
This commit is contained in:
parent
d31647b31f
commit
7a0a377edd
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue