#ifndef _NTRTL_H
NTSYSAPI
NTSTATUS
NTAPI
RtlReleasePebLock(
VOID
);
View code on GitHub
/*
* RTL forward symbol typedefs
*
* This file is part of System Informer.
*/
#ifndef _NTRTL_FWD_H
// Note: ntdll symbols and exports define these forwarders:
// begin_forwarders
#ifndef PHNT_INLINE_PEB_FORWARDERS
FORCEINLINE
NTSTATUS
NTAPI
RtlReleasePebLock(
VOID
)
{
return RtlLeaveCriticalSection(NtCurrentPeb()->FastPebLock);
}
View code on GitHub
No description available.