// ndis.h
void NdisStoreUlong(
Destination,
[in] Value
);
View the official Windows Driver Kit DDI referenceNo description available.
The NdisStoreUlong function stores a ULONG value at a particular address, avoiding alignment faults.
DestinationA pointer to a location in which to store a given ULONG value.
Value [in]The value to be stored.
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.