mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 04:13:34 +00:00
Fixed a bug in IsConsoleHandle which was introduced by r16540.
svn path=/trunk/; revision=16556
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user