NDIS_PHYSICAL_ADDRESS_CONST (Windows CE 5.0)

Send Feedback

This macro initializes a static constant of type physical address.

VOID NDIS_PHYSICAL_ADDRESS_CONST(ULONG _Low,LONG _High);

Parameters

  • _Low
    Specifies the low-order bytes of the physical address.
  • _High
    Specifies the high-order bytes of the physical address.

Remarks

The NDIS_PHYSICAL_ADDRESS_CONST macro is defined as follows.

#define NDIS_PHYSICAL_ADDRESS_CONST(_Low, _High)            \
    { (ULONG)(_Low), (LONG)(_High) }

Requirements

OS Versions: Windows CE .NET 4.0 and later.
Header: Ndis.h.

See Also

NDIS_PHYSICAL_ADDRESS | NdisGetPhysicalAddressHigh | NdisGetPhysicalAddressLow | NdisSetPhysicalAddressHigh | NdisSetPhysicalAddressLow

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.