- NDK 0.98, now with versionned headers. Too many changes to list, see the TinyKRNL...
[reactos.git] / reactos / include / in6addr.h
1 #ifndef s6_addr
2
3 typedef struct in6_addr
4 {
5 union
6 {
7 UCHAR Byte[16];
8 USHORT Word[8];
9 } u;
10 } IN6_ADDR, *PIN6_ADDR, FAR *LPIN6_ADDR;
11
12 #define in_addr6 in6_addr
13 #define _S6_un u
14 #define _S6_u8 Byte
15 #define s6_addr _S6_un._S6_u8
16 #define s6_bytes u.Byte
17 #define s6_words u.Word
18
19 #endif