mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
[PSDK] winbase.h: Isolate the CreateProcess() dwCreationFlag values
This commit is contained in:
parent
c9a99bf63a
commit
d7fa4292ce
1 changed files with 30 additions and 24 deletions
|
@ -173,6 +173,8 @@ extern "C" {
|
||||||
#define PIPE_CLIENT_END 0
|
#define PIPE_CLIENT_END 0
|
||||||
#define PIPE_SERVER_END 1
|
#define PIPE_SERVER_END 1
|
||||||
#define PIPE_UNLIMITED_INSTANCES 255
|
#define PIPE_UNLIMITED_INSTANCES 255
|
||||||
|
|
||||||
|
/* CreateProcess() dwCreationFlags values */
|
||||||
#define DEBUG_PROCESS 0x00000001
|
#define DEBUG_PROCESS 0x00000001
|
||||||
#define DEBUG_ONLY_THIS_PROCESS 0x00000002
|
#define DEBUG_ONLY_THIS_PROCESS 0x00000002
|
||||||
#define CREATE_SUSPENDED 0x00000004
|
#define CREATE_SUSPENDED 0x00000004
|
||||||
|
@ -196,6 +198,11 @@ extern "C" {
|
||||||
#define PROFILE_USER 0x10000000
|
#define PROFILE_USER 0x10000000
|
||||||
#define PROFILE_KERNEL 0x20000000
|
#define PROFILE_KERNEL 0x20000000
|
||||||
#define PROFILE_SERVER 0x40000000
|
#define PROFILE_SERVER 0x40000000
|
||||||
|
|
||||||
|
/* CreateThread()/CreateRemoteThread() dwCreationFlags values */
|
||||||
|
// #define CREATE_SUSPENDED 0x00000004 // See above
|
||||||
|
#define STACK_SIZE_PARAM_IS_A_RESERVATION 0x00010000
|
||||||
|
|
||||||
#define CREATE_NEW 1
|
#define CREATE_NEW 1
|
||||||
#define CREATE_ALWAYS 2
|
#define CREATE_ALWAYS 2
|
||||||
#define OPEN_EXISTING 3
|
#define OPEN_EXISTING 3
|
||||||
|
@ -574,7 +581,6 @@ extern "C" {
|
||||||
#define FIBER_FLAG_FLOAT_SWITCH 0x1
|
#define FIBER_FLAG_FLOAT_SWITCH 0x1
|
||||||
#endif
|
#endif
|
||||||
#define FLS_OUT_OF_INDEXES 0xFFFFFFFF
|
#define FLS_OUT_OF_INDEXES 0xFFFFFFFF
|
||||||
#define STACK_SIZE_PARAM_IS_A_RESERVATION 0x00010000
|
|
||||||
#if (_WIN32_WINNT >= 0x0600)
|
#if (_WIN32_WINNT >= 0x0600)
|
||||||
#define MAX_RESTART_CMD_LINE 0x800
|
#define MAX_RESTART_CMD_LINE 0x800
|
||||||
#define RESTART_CYCLICAL 0x1
|
#define RESTART_CYCLICAL 0x1
|
||||||
|
|
Loading…
Reference in a new issue