WriteRaw64 - NtDoc

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

VOID WriteRaw64(
  LONG64 volatile *Destination,
  LONG64          Value
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

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

Description

WriteRaw64 performs a raw write operation to a volatile LONG64 value without any memory ordering or atomicity semantics.

Parameters

Destination

[out] A pointer to the volatile LONG64 variable to write to.

Value

[in] The LONG64 value to write to the destination.

Remarks

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

See also

ReadRaw64

WriteRaw