ReadRaw64 - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// wdm.h

LONG64 ReadRaw64(
  LONG64 const volatile *Source
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-wdm-readraw64~r1)

Description

ReadRaw64 performs a raw read operation on a volatile LONG64 value without any memory ordering or atomicity semantics.

Parameters

Source

[in] A pointer to the volatile LONG64 variable to read from.

Return value

Returns the LONG64 value read from the specified memory location.

Remarks

The ReadRaw64 function performs a raw memory read operation on a 64-bit value without compiler optimization barriers or synchronization guarantees.

See also

WriteRaw64

ReadRaw