https://git.reactos.org/?p=reactos.git;a=commitdiff;h=d7fa4292ce1e20269469de3622061a571992ee69

commit d7fa4292ce1e20269469de3622061a571992ee69
Author:     Hermès Bélusca-Maïto <hermes.belusca-ma...@reactos.org>
AuthorDate: Fri Oct 25 21:13:40 2024 +0200
Commit:     Hermès Bélusca-Maïto <hermes.belusca-ma...@reactos.org>
CommitDate: Fri Oct 25 21:21:37 2024 +0200

    [PSDK] winbase.h: Isolate the CreateProcess() dwCreationFlag values
---
 sdk/include/psdk/winbase.h | 54 +++++++++++++++++++++++++---------------------
 1 file changed, 30 insertions(+), 24 deletions(-)

diff --git a/sdk/include/psdk/winbase.h b/sdk/include/psdk/winbase.h
index 2356d2915d1..495c02c1dc7 100644
--- a/sdk/include/psdk/winbase.h
+++ b/sdk/include/psdk/winbase.h
@@ -173,29 +173,36 @@ extern "C" {
 #define PIPE_CLIENT_END 0
 #define PIPE_SERVER_END 1
 #define PIPE_UNLIMITED_INSTANCES 255
-#define DEBUG_PROCESS                  0x00000001
-#define DEBUG_ONLY_THIS_PROCESS                0x00000002
-#define CREATE_SUSPENDED               0x00000004
-#define DETACHED_PROCESS               0x00000008
-#define CREATE_NEW_CONSOLE             0x00000010
-#define NORMAL_PRIORITY_CLASS          0x00000020
-#define IDLE_PRIORITY_CLASS            0x00000040
-#define HIGH_PRIORITY_CLASS            0x00000080
-#define REALTIME_PRIORITY_CLASS                0x00000100
-#define CREATE_NEW_PROCESS_GROUP       0x00000200
-#define CREATE_UNICODE_ENVIRONMENT     0x00000400
-#define CREATE_SEPARATE_WOW_VDM                0x00000800
-#define CREATE_SHARED_WOW_VDM          0x00001000
-#define CREATE_FORCEDOS                        0x00002000
-#define BELOW_NORMAL_PRIORITY_CLASS    0x00004000
-#define ABOVE_NORMAL_PRIORITY_CLASS    0x00008000
-#define CREATE_BREAKAWAY_FROM_JOB      0x01000000
-#define CREATE_PRESERVE_CODE_AUTHZ_LEVEL 0x02000000
-#define CREATE_DEFAULT_ERROR_MODE      0x04000000
-#define CREATE_NO_WINDOW               0x08000000
-#define PROFILE_USER                   0x10000000
-#define PROFILE_KERNEL                 0x20000000
-#define PROFILE_SERVER                 0x40000000
+
+/* CreateProcess() dwCreationFlags values */
+#define DEBUG_PROCESS                     0x00000001
+#define DEBUG_ONLY_THIS_PROCESS           0x00000002
+#define CREATE_SUSPENDED                  0x00000004
+#define DETACHED_PROCESS                  0x00000008
+#define CREATE_NEW_CONSOLE                0x00000010
+#define NORMAL_PRIORITY_CLASS             0x00000020
+#define IDLE_PRIORITY_CLASS               0x00000040
+#define HIGH_PRIORITY_CLASS               0x00000080
+#define REALTIME_PRIORITY_CLASS           0x00000100
+#define CREATE_NEW_PROCESS_GROUP          0x00000200
+#define CREATE_UNICODE_ENVIRONMENT        0x00000400
+#define CREATE_SEPARATE_WOW_VDM           0x00000800
+#define CREATE_SHARED_WOW_VDM             0x00001000
+#define CREATE_FORCEDOS                   0x00002000
+#define BELOW_NORMAL_PRIORITY_CLASS       0x00004000
+#define ABOVE_NORMAL_PRIORITY_CLASS       0x00008000
+#define CREATE_BREAKAWAY_FROM_JOB         0x01000000
+#define CREATE_PRESERVE_CODE_AUTHZ_LEVEL  0x02000000
+#define CREATE_DEFAULT_ERROR_MODE         0x04000000
+#define CREATE_NO_WINDOW                  0x08000000
+#define PROFILE_USER                      0x10000000
+#define PROFILE_KERNEL                    0x20000000
+#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_ALWAYS  2
 #define OPEN_EXISTING  3
@@ -574,7 +581,6 @@ extern "C" {
 #define FIBER_FLAG_FLOAT_SWITCH 0x1
 #endif
 #define FLS_OUT_OF_INDEXES 0xFFFFFFFF
-#define STACK_SIZE_PARAM_IS_A_RESERVATION 0x00010000
 #if (_WIN32_WINNT >= 0x0600)
 #define MAX_RESTART_CMD_LINE 0x800
 #define RESTART_CYCLICAL 0x1

Reply via email to