// wdm.h
LONG ReadRaw(
LONG const volatile *Source
);
View the official Windows Driver Kit DDI referenceNo description available.
ReadRaw performs a raw read operation on a volatile LONG value without any memory ordering semantics.
Source[in] A pointer to a volatile LONG value to read from.
Returns the LONG value read from the specified memory location.
The ReadRaw function executes a plain read from memory without providing any ordering, fencing, or atomicity guarantees. Use this function only when you knowingly manage synchronization elsewhere or when interacting with hardware where the raw access is required.