mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
Don't use INVALID_HANDLE_VALUE as HANDLE_DETACH_PROCESS.
svn path=/trunk/; revision=16925
This commit is contained in:
parent
d20bf6a780
commit
bec5197e46
1 changed files with 3 additions and 3 deletions
|
@ -26,9 +26,9 @@
|
||||||
#define IsConsoleHandle(h) \
|
#define IsConsoleHandle(h) \
|
||||||
(((((ULONG)h) & 0x10000003) == 0x3) ? TRUE : FALSE)
|
(((((ULONG)h) & 0x10000003) == 0x3) ? TRUE : FALSE)
|
||||||
|
|
||||||
#define HANDLE_DETACHED_PROCESS (HANDLE)-1
|
#define HANDLE_DETACHED_PROCESS (HANDLE)-2
|
||||||
#define HANDLE_CREATE_NEW_CONSOLE (HANDLE)-2
|
#define HANDLE_CREATE_NEW_CONSOLE (HANDLE)-3
|
||||||
#define HANDLE_CREATE_NO_WINDOW (HANDLE)-3
|
#define HANDLE_CREATE_NO_WINDOW (HANDLE)-4
|
||||||
|
|
||||||
/* Undocumented CreateProcess flag */
|
/* Undocumented CreateProcess flag */
|
||||||
#define STARTF_SHELLPRIVATE 0x400
|
#define STARTF_SHELLPRIVATE 0x400
|
||||||
|
|
Loading…
Reference in a new issue