#ifndef _NTRTL_H
/**
* Gets a value indicating whether the process is currently in the shutdown phase.
*
* \return TRUE if a shutdown of the current dll process is in progress; otherwise, FALSE.
*/
NTSYSAPI
BOOLEAN
NTAPI
RtlDllShutdownInProgress(
VOID
);
View code on GitHubBOOLEAN
RtlDllShutdownInProgress (
VOID
);
View the official Win32 development documentationThis function is documented in Windows SDK.
Gets a value indicating whether a shutdown of the current dll process is in progress.
None.
TRUE if a shutdown of the current dll process is in progress; otherwise, FALSE.
This function is not defined in an SDK header and must be declared by the caller. This function is exported from ntdll.dll.
| Requirement | Value |
|---|---|
| Minimum supported client | Windows 10 |
| Minimum supported server | Windows 10 |
| DLL | Ntdll.dll |