// wdm.h
VOID WriteRaw16(
SHORT volatile *Destination,
SHORT Value
);
View the official Windows Driver Kit DDI referenceNo description available.
WriteRaw16 performs a raw write operation to a volatile SHORT value without any memory ordering or atomicity semantics.
Destination[out] A pointer to the volatile SHORT variable to write to.
Value[in] The SHORT value to write to the destination.
The WriteRaw16 function performs a raw memory write operation on a 16-bit value without compiler optimization barriers or synchronization guarantees.