NDIS_PHYSICAL_ADDRESS_CONST
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
Last updated on Tuesday, May 18, 2004
© 1992-2003 Microsoft Corporation. All rights reserved.