Note
Access to this page requires authorization. You can try signing in or .
Access to this page requires authorization. You can try .
GetProcessShutdownParameters function (processthreadsapi.h)
Retrieves the shutdown parameters for the currently calling process.
Syntax
BOOL GetProcessShutdownParameters(
[out] LPDWORD lpdwLevel,
[out] LPDWORD lpdwFlags
);
Parameters
[out] lpdwLevel
A pointer to a variable that receives the shutdown priority level. Higher levels shut down first. System level shutdown orders are reserved for system components. Higher numbers shut down first. Following are the level conventions.
| Value | Meaning |
|---|---|
|
System reserved last shutdown range. |
|
Application reserved last shutdown range. |
|
Application reserved "in between" shutdown range. |
|
Application reserved first shutdown range. |
|
System reserved first shutdown range. |
All processes start at shutdown level 0x280.
[out] lpdwFlags
A pointer to a variable that receives the shutdown flags. This parameter can be the following value.
| Value | Meaning |
|---|---|
|
If this process takes longer than the specified timeout to shut down, do not display a retry dialog box for the user. Instead, just cause the process to directly exit. |
Return value
If the function succeeds, the return value is nonzero.
If the function fails, the return value is zero. To get extended error information, call GetLastError.
Requirements
| Requirement | Value |
|---|---|
| Minimum supported client | Windows XP [desktop apps only] |
| Minimum supported server | Windows Server 2003 [desktop apps only] |
| Target Platform | Windows |
| Header | processthreadsapi.h (include Windows.h) |
| Library | Kernel32.lib |
| DLL | Kernel32.dll |
See also
Feedback
Was this page helpful?
