RtlStoreUshort

VOID
    RtlStoreUshort(

        IN PUSHORT  Address,
        IN USHORT  Value
        );

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

Parameters

Address
Points to a location in which to store a USHORT value.
Value
Specifies a USHORT value to be stored.

Comments

The caller can be running at any IRQL if Address points to nonpaged pool. Otherwise, the caller must be running at IRQL < DISPATCH_LEVEL.

See Also

RtlRetrieveUshort