Share via


NdisStoreUlong (NDIS 5.1) function

Note   NDIS 5. x has been deprecated and is superseded by NDIS 6. x. For new NDIS driver development, see Network Drivers Starting with Windows Vista. For information about porting NDIS 5. x drivers to NDIS 6. x, see Porting NDIS 5.x Drivers to NDIS 6.0.

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

Syntax

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

Parameters

  • DestinationAddress [in]
    Pointer to a location in which to store a given ULONG value.

  • Value [in]
    Specifies the value to be stored.

Return value

None

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.

Requirements

Target platform

Desktop

Version

See NdisStoreUlong.

Header

Ndis.h (include Ndis.h)

IRQL

See Remarks section.

See also

NdisRetrieveUlong

 

 

Send comments about this topic to Microsoft