// netadaptercxtypes.h
typedef union _NET_IPV6_ADDRESS {
struct {
UINT64 NetworkPrefix;
UINT64 InterfaceIdentifier;
} Unicast;
UINT8 Value[16];
} NET_IPV6_ADDRESS;
View the official Windows Driver Kit DDI referenceNo description available.
The NET_IPV6_ADDRESS union specifies an IPv6 address.
UnicastA structure that represents a IPv6 unicast address and contains the NetworkPrefix and InterfaceIdentifier values.
Unicast.NetworkPrefixA UINT64 value that represents the network prefix.
Unicast.InterfaceIdentifierA UINT64 value that represents the interface identifier.
ValueA UINT8 array that represents an IPv6 address.