// netadaptercxtypes.h typedef union _NET_IPV4_ADDRESS { UINT32 Address; UINT8 Value[4]; } NET_IPV4_ADDRESS;View the official Windows Driver Kit DDI reference
No description available.
The NET_IPV4_ADDRESS union specifies an IPv4 address.
Address
A UINT32 value that represents the IPv4 address.
Value
A UINT8 array that represents the IPv4 address.
NET_IPV6_ADDRESS
View the official Windows Driver Kit DDI reference