ntdll: Added implementation of RtlDllShutdownInProgress.
This commit is contained in:
parent
3314367238
commit
c9b5569bc2
|
@ -1868,6 +1868,16 @@ NTSTATUS WINAPI LdrQueryProcessModuleInformation(PSYSTEM_MODULE_INFORMATION smi,
|
|||
return nts;
|
||||
}
|
||||
|
||||
|
||||
/******************************************************************
|
||||
* RtlDllShutdownInProgress (NTDLL.@)
|
||||
*/
|
||||
BOOLEAN WINAPI RtlDllShutdownInProgress(void)
|
||||
{
|
||||
return process_detaching;
|
||||
}
|
||||
|
||||
|
||||
/******************************************************************
|
||||
* LdrShutdownProcess (NTDLL.@)
|
||||
*
|
||||
|
|
|
@ -530,7 +530,7 @@
|
|||
@ stdcall RtlDestroyProcessParameters(ptr)
|
||||
@ stdcall RtlDestroyQueryDebugBuffer(ptr)
|
||||
@ stdcall RtlDetermineDosPathNameType_U(wstr)
|
||||
# @ stub RtlDllShutdownInProgress
|
||||
@ stdcall RtlDllShutdownInProgress()
|
||||
# @ stub RtlDnsHostNameToComputerName
|
||||
@ stdcall RtlDoesFileExists_U(wstr)
|
||||
# @ stub RtlDosApplyFileIsolationRedirection_Ustr
|
||||
|
|
|
@ -2015,6 +2015,7 @@ HANDLE WINAPI RtlDestroyHeap(HANDLE);
|
|||
void WINAPI RtlDestroyProcessParameters(RTL_USER_PROCESS_PARAMETERS*);
|
||||
NTSTATUS WINAPI RtlDestroyQueryDebugBuffer(PDEBUG_BUFFER);
|
||||
DOS_PATHNAME_TYPE WINAPI RtlDetermineDosPathNameType_U(PCWSTR);
|
||||
BOOLEAN WINAPI RtlDllShutdownInProgress(void);
|
||||
BOOLEAN WINAPI RtlDoesFileExists_U(LPCWSTR);
|
||||
BOOLEAN WINAPI RtlDosPathNameToNtPathName_U(PCWSTR,PUNICODE_STRING,PWSTR*,CURDIR*);
|
||||
ULONG WINAPI RtlDosSearchPath_U(LPCWSTR, LPCWSTR, LPCWSTR, ULONG, LPWSTR, LPWSTR*);
|
||||
|
|
Loading…
Reference in New Issue