File tree Expand file tree Collapse file tree 2 files changed +18
-0
lines changed Expand file tree Collapse file tree 2 files changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -1066,6 +1066,22 @@ The :mod:`subprocess` module exposes the following constants.
1066
1066
Specifies that the :attr: `STARTUPINFO.wShowWindow ` attribute contains
1067
1067
additional information.
1068
1068
1069
+ .. data :: STARTF_FORCEONFEEDBACK
1070
+
1071
+ A :attr: `STARTUPINFO.dwFlags ` parameter to specify that the
1072
+ *Working in Background * mouse cursor will be displayed while a
1073
+ process is launching. This is the default behavior for GUI
1074
+ processes.
1075
+
1076
+ .. versionadded :: 3.13
1077
+
1078
+ .. data :: STARTF_FORCEOFFFEEDBACK
1079
+
1080
+ A :attr: `STARTUPINFO.dwFlags ` parameter to specify that mouse
1081
+ cursor will not be changed when launching the process.
1082
+
1083
+ .. versionadded :: 3.13
1084
+
1069
1085
.. data :: CREATE_NEW_CONSOLE
1070
1086
1071
1087
The new process has a new console, instead of inheriting its parent's
Original file line number Diff line number Diff line change 83
83
STD_INPUT_HANDLE , STD_OUTPUT_HANDLE ,
84
84
STD_ERROR_HANDLE , SW_HIDE ,
85
85
STARTF_USESTDHANDLES , STARTF_USESHOWWINDOW ,
86
+ STARTF_FORCEONFEEDBACK , STARTF_FORCEOFFFEEDBACK ,
86
87
ABOVE_NORMAL_PRIORITY_CLASS , BELOW_NORMAL_PRIORITY_CLASS ,
87
88
HIGH_PRIORITY_CLASS , IDLE_PRIORITY_CLASS ,
88
89
NORMAL_PRIORITY_CLASS , REALTIME_PRIORITY_CLASS ,
93
94
"STD_INPUT_HANDLE" , "STD_OUTPUT_HANDLE" ,
94
95
"STD_ERROR_HANDLE" , "SW_HIDE" ,
95
96
"STARTF_USESTDHANDLES" , "STARTF_USESHOWWINDOW" ,
97
+ "STARTF_FORCEONFEEDBACK" , "STARTF_FORCEOFFFEEDBACK" ,
96
98
"STARTUPINFO" ,
97
99
"ABOVE_NORMAL_PRIORITY_CLASS" , "BELOW_NORMAL_PRIORITY_CLASS" ,
98
100
"HIGH_PRIORITY_CLASS" , "IDLE_PRIORITY_CLASS" ,
You can’t perform that action at this time.
0 commit comments