// wdm.h
void RtlStoreUlong(
[out] ADDRESS,
[in] VALUE
);
View the official Windows Driver Kit DDI referenceNo description available.
The RtlStoreUlong macro stores a ULONG value at a particular address, avoiding alignment faults.
ADDRESS [out]A pointer to a location in which to store the specified ULONG value.
VALUE [in]Specifies a ULONG value to be stored.
The caller can be running at any IRQL if _Address_ points to nonpaged pool. Otherwise, the caller must be running at IRQL <= APC_LEVEL.