ETH_COPY_NETWORK_ADDRESS (Compact 2013)

3/26/2014

This macro copies a specified Ethernet address to a specified location.

Syntax

VOID ETH_COPY_NETWORK_ADDRESS(
  PCHAR _D,
  CHAR _S
);

Parameters

  • _D
    Pointer to a caller-supplied variable to which this function copies the source address
  • _S
    Pointer to the source address

Return Value

None

Remarks

The ETH_COPY_NETWORK_ADDRESS macro is defined as follows.

#define ETH_COPY_NETWORK_ADDRESS(_D, _S)                      \
{                                                             \
    *((ULONG UNALIGNED *)(_D)) = *((ULONG UNALIGNED *)(_S));  \
    *((USHORT UNALIGNED *)((UCHAR *)(_D)+4)) = *((USHORT UNALIGNED *)((UCHAR *)(_S)+4)); \
}

Requirements

Header

ndis.h

See Also

Reference

NDIS 5.x Legacy Network Driver Macros
NDIS 5.x Legacy Reference