RtlCopyVolatileMemory - NtDoc

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

FORCEINLINE
VOID
NTAPI
RtlCopyVolatileMemory(
    _Out_writes_bytes_(Size) VOID *Destination,
    _In_reads_bytes_(Size) volatile const VOID *Source,
    _In_ SIZE_T Size
    )
{
    RtlCopyMemory(Destination, (const VOID *)Source, Size);
    BarrierAfterRead();
}

#endif
#endif

View code on GitHub

No description available.