ETH_COPY_NETWORK_ADDRESS (Windows Embedded CE 6.0)

1/6/2010

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
Windows Embedded CE Windows CE .NET 4.0 and later

See Also

Reference

Network Driver Macros

Concepts

NDIS Ethernet Objects

Other Resources

Address Resolution Protocol