RtlStoreUshort - NtDoc

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

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

NtDoc

No description available.

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

Description

The RtlStoreUshort macro stores a USHORT value at a particular address, avoiding alignment faults.

Parameters

ADDRESS [out]

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

VALUE [in]

Specifies a USHORT 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.