NdisStoreUlong - NtDoc

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

void NdisStoreUlong(
       Destination,
  [in] Value
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-ndis-ndisstoreulong)

NdisStoreUlong macro

Description

The NdisStoreUlong function stores a ULONG value at a particular address, avoiding alignment faults.

Parameters

Destination

A pointer to a location in which to store a given ULONG value.

Value [in]

The value to be stored.

Remarks

Callers of NdisStoreUlong can be running at any IRQL if DestinationAddress points to nonpaged pool. Otherwise, the caller must be running at IRQL < DISPATCH_LEVEL.

See also

NdisRetrieveUlong