NdisStoreUlong

VOID
   NdisStoreUlong(
       IN PULONG DestinationAddress,
       IN ULONG Value
       );

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

Parameters

DestinationAddress

Points to a location in which to store a given ULONG value.

Value

Specifies the value to be stored.

Comments

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