RtlStoreUlong macro (wdm.h)
The RtlStoreUlong macro stores a ULONG value at a particular address, avoiding alignment faults.
Syntax
void RtlStoreUlong(
[out] ADDRESS,
[in] VALUE
);
Parameters
[out] ADDRESS
A pointer to a location in which to store the specified ULONG value.
[in] VALUE
Specifies a ULONG value to be stored.
Return value
None
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.
Requirements
Requirement | Value |
---|---|
Minimum supported client | Windows 2000 |
Header | wdm.h |
IRQL | Any level (see Remarks) |