RtlStoreUlong - NtDoc

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

void RtlStoreUlong(
  [out] ADDRESS,
  [in]  VALUE
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-wdm-rtlstoreulong)

Description

The RtlStoreUlong macro stores a ULONG value at a particular address, avoiding alignment faults.

Parameters

ADDRESS [out]

A pointer to a location in which to store the specified ULONG value.

VALUE [in]

Specifies a ULONG value to be stored.

Remarks

The caller can be running at any IRQL if _Address_ points to nonpaged pool. Otherwise, the caller must be running at IRQL <= APC_LEVEL.