RtlReadHandleNoFence - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
#ifndef _NTRTL_H

FORCEINLINE
HANDLE
NTAPI
RtlReadHandleNoFence(
    _In_reads_bytes_(sizeof(HANDLE)) volatile CONST HANDLE *Address
    )
{
    return (HANDLE)ReadPointerNoFence((PVOID *)Address);
}

#endif

View code on GitHub

No description available.