ipconfig 0.3.4

Get network adapters information and network configuration for windows.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
/*
    automatically generated by rust-bindgen 0.72.1 with:
    bindgen --output=win64.rs --allowlist-function=GetAdaptersAddresses wrapper.h -- --target=i686-pc-windows-msvc
*/

#[repr(C)]
#[derive(Copy, Clone, Debug, Default, Eq, Hash, Ord, PartialEq, PartialOrd)]
pub struct __BindgenBitfieldUnit<Storage> {
    storage: Storage,
}
impl<Storage> __BindgenBitfieldUnit<Storage> {
    #[inline]
    pub const fn new(storage: Storage) -> Self {
        Self { storage }
    }
}
impl<Storage> __BindgenBitfieldUnit<Storage>
where
    Storage: AsRef<[u8]> + AsMut<[u8]>,
{
    #[inline]
    fn extract_bit(byte: u8, index: usize) -> bool {
        let bit_index = if cfg!(target_endian = "big") {
            7 - (index % 8)
        } else {
            index % 8
        };
        let mask = 1 << bit_index;
        byte & mask == mask
    }
    #[inline]
    pub fn get_bit(&self, index: usize) -> bool {
        debug_assert!(index / 8 < self.storage.as_ref().len());
        let byte_index = index / 8;
        let byte = self.storage.as_ref()[byte_index];
        Self::extract_bit(byte, index)
    }
    #[inline]
    pub unsafe fn raw_get_bit(this: *const Self, index: usize) -> bool {
        debug_assert!(index / 8 < core::mem::size_of::<Storage>());
        let byte_index = index / 8;
        let byte = unsafe {
            *(core::ptr::addr_of!((*this).storage) as *const u8).offset(byte_index as isize)
        };
        Self::extract_bit(byte, index)
    }
    #[inline]
    fn change_bit(byte: u8, index: usize, val: bool) -> u8 {
        let bit_index = if cfg!(target_endian = "big") {
            7 - (index % 8)
        } else {
            index % 8
        };
        let mask = 1 << bit_index;
        if val {
            byte | mask
        } else {
            byte & !mask
        }
    }
    #[inline]
    pub fn set_bit(&mut self, index: usize, val: bool) {
        debug_assert!(index / 8 < self.storage.as_ref().len());
        let byte_index = index / 8;
        let byte = &mut self.storage.as_mut()[byte_index];
        *byte = Self::change_bit(*byte, index, val);
    }
    #[inline]
    pub unsafe fn raw_set_bit(this: *mut Self, index: usize, val: bool) {
        debug_assert!(index / 8 < core::mem::size_of::<Storage>());
        let byte_index = index / 8;
        let byte = unsafe {
            (core::ptr::addr_of_mut!((*this).storage) as *mut u8).offset(byte_index as isize)
        };
        unsafe { *byte = Self::change_bit(*byte, index, val) };
    }
    #[inline]
    pub fn get(&self, bit_offset: usize, bit_width: u8) -> u64 {
        debug_assert!(bit_width <= 64);
        debug_assert!(bit_offset / 8 < self.storage.as_ref().len());
        debug_assert!((bit_offset + (bit_width as usize)) / 8 <= self.storage.as_ref().len());
        let mut val = 0;
        for i in 0..(bit_width as usize) {
            if self.get_bit(i + bit_offset) {
                let index = if cfg!(target_endian = "big") {
                    bit_width as usize - 1 - i
                } else {
                    i
                };
                val |= 1 << index;
            }
        }
        val
    }
    #[inline]
    pub unsafe fn raw_get(this: *const Self, bit_offset: usize, bit_width: u8) -> u64 {
        debug_assert!(bit_width <= 64);
        debug_assert!(bit_offset / 8 < core::mem::size_of::<Storage>());
        debug_assert!((bit_offset + (bit_width as usize)) / 8 <= core::mem::size_of::<Storage>());
        let mut val = 0;
        for i in 0..(bit_width as usize) {
            if unsafe { Self::raw_get_bit(this, i + bit_offset) } {
                let index = if cfg!(target_endian = "big") {
                    bit_width as usize - 1 - i
                } else {
                    i
                };
                val |= 1 << index;
            }
        }
        val
    }
    #[inline]
    pub fn set(&mut self, bit_offset: usize, bit_width: u8, val: u64) {
        debug_assert!(bit_width <= 64);
        debug_assert!(bit_offset / 8 < self.storage.as_ref().len());
        debug_assert!((bit_offset + (bit_width as usize)) / 8 <= self.storage.as_ref().len());
        for i in 0..(bit_width as usize) {
            let mask = 1 << i;
            let val_bit_is_set = val & mask == mask;
            let index = if cfg!(target_endian = "big") {
                bit_width as usize - 1 - i
            } else {
                i
            };
            self.set_bit(index + bit_offset, val_bit_is_set);
        }
    }
    #[inline]
    pub unsafe fn raw_set(this: *mut Self, bit_offset: usize, bit_width: u8, val: u64) {
        debug_assert!(bit_width <= 64);
        debug_assert!(bit_offset / 8 < core::mem::size_of::<Storage>());
        debug_assert!((bit_offset + (bit_width as usize)) / 8 <= core::mem::size_of::<Storage>());
        for i in 0..(bit_width as usize) {
            let mask = 1 << i;
            let val_bit_is_set = val & mask == mask;
            let index = if cfg!(target_endian = "big") {
                bit_width as usize - 1 - i
            } else {
                i
            };
            unsafe { Self::raw_set_bit(this, index + bit_offset, val_bit_is_set) };
        }
    }
}
pub type wchar_t = ::std::os::raw::c_ushort;
pub type ULONG = ::std::os::raw::c_ulong;
pub type PULONG = *mut ULONG;
pub type USHORT = ::std::os::raw::c_ushort;
pub type DWORD = ::std::os::raw::c_ulong;
pub type BYTE = ::std::os::raw::c_uchar;
pub type INT = ::std::os::raw::c_int;
pub type UINT8 = ::std::os::raw::c_uchar;
pub type UINT32 = ::std::os::raw::c_uint;
pub type ULONG64 = ::std::os::raw::c_ulonglong;
pub type PVOID = *mut ::std::os::raw::c_void;
pub type CHAR = ::std::os::raw::c_char;
pub type WCHAR = wchar_t;
pub type PWCHAR = *mut WCHAR;
pub type PCHAR = *mut CHAR;
pub type ULONGLONG = ::std::os::raw::c_ulonglong;
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct _GUID {
    pub Data1: ::std::os::raw::c_ulong,
    pub Data2: ::std::os::raw::c_ushort,
    pub Data3: ::std::os::raw::c_ushort,
    pub Data4: [::std::os::raw::c_uchar; 8usize],
}
#[allow(clippy::unnecessary_operation, clippy::identity_op)]
const _: () = {
    ["Size of _GUID"][::std::mem::size_of::<_GUID>() - 16usize];
    ["Alignment of _GUID"][::std::mem::align_of::<_GUID>() - 4usize];
    ["Offset of field: _GUID::Data1"][::std::mem::offset_of!(_GUID, Data1) - 0usize];
    ["Offset of field: _GUID::Data2"][::std::mem::offset_of!(_GUID, Data2) - 4usize];
    ["Offset of field: _GUID::Data3"][::std::mem::offset_of!(_GUID, Data3) - 6usize];
    ["Offset of field: _GUID::Data4"][::std::mem::offset_of!(_GUID, Data4) - 8usize];
};
pub type GUID = _GUID;
pub type ADDRESS_FAMILY = USHORT;
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct sockaddr {
    pub sa_family: ADDRESS_FAMILY,
    pub sa_data: [CHAR; 14usize],
}
#[allow(clippy::unnecessary_operation, clippy::identity_op)]
const _: () = {
    ["Size of sockaddr"][::std::mem::size_of::<sockaddr>() - 16usize];
    ["Alignment of sockaddr"][::std::mem::align_of::<sockaddr>() - 2usize];
    ["Offset of field: sockaddr::sa_family"][::std::mem::offset_of!(sockaddr, sa_family) - 0usize];
    ["Offset of field: sockaddr::sa_data"][::std::mem::offset_of!(sockaddr, sa_data) - 2usize];
};
pub type LPSOCKADDR = *mut sockaddr;
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct _SOCKET_ADDRESS {
    pub lpSockaddr: LPSOCKADDR,
    pub iSockaddrLength: INT,
}
#[allow(clippy::unnecessary_operation, clippy::identity_op)]
const _: () = {
    ["Size of _SOCKET_ADDRESS"][::std::mem::size_of::<_SOCKET_ADDRESS>() - 16usize];
    ["Alignment of _SOCKET_ADDRESS"][::std::mem::align_of::<_SOCKET_ADDRESS>() - 8usize];
    ["Offset of field: _SOCKET_ADDRESS::lpSockaddr"]
        [::std::mem::offset_of!(_SOCKET_ADDRESS, lpSockaddr) - 0usize];
    ["Offset of field: _SOCKET_ADDRESS::iSockaddrLength"]
        [::std::mem::offset_of!(_SOCKET_ADDRESS, iSockaddrLength) - 8usize];
};
pub type SOCKET_ADDRESS = _SOCKET_ADDRESS;
pub type IFTYPE = ULONG;
pub type NET_IF_COMPARTMENT_ID = UINT32;
pub type NET_IF_NETWORK_GUID = GUID;
#[repr(C)]
#[derive(Copy, Clone)]
pub union _NET_LUID_LH {
    pub Value: ULONG64,
    pub Info: _NET_LUID_LH__bindgen_ty_1,
}
#[repr(C)]
#[repr(align(8))]
#[derive(Debug, Copy, Clone)]
pub struct _NET_LUID_LH__bindgen_ty_1 {
    pub _bitfield_align_1: [u32; 0],
    pub _bitfield_1: __BindgenBitfieldUnit<[u8; 8usize]>,
}
#[allow(clippy::unnecessary_operation, clippy::identity_op)]
const _: () = {
    ["Size of _NET_LUID_LH__bindgen_ty_1"]
        [::std::mem::size_of::<_NET_LUID_LH__bindgen_ty_1>() - 8usize];
    ["Alignment of _NET_LUID_LH__bindgen_ty_1"]
        [::std::mem::align_of::<_NET_LUID_LH__bindgen_ty_1>() - 8usize];
};
impl _NET_LUID_LH__bindgen_ty_1 {
    #[inline]
    pub fn Reserved(&self) -> ULONG64 {
        unsafe { ::std::mem::transmute(self._bitfield_1.get(0usize, 24u8) as u64) }
    }
    #[inline]
    pub fn set_Reserved(&mut self, val: ULONG64) {
        unsafe {
            let val: u64 = ::std::mem::transmute(val);
            self._bitfield_1.set(0usize, 24u8, val as u64)
        }
    }
    #[inline]
    pub unsafe fn Reserved_raw(this: *const Self) -> ULONG64 {
        unsafe {
            ::std::mem::transmute(<__BindgenBitfieldUnit<[u8; 8usize]>>::raw_get(
                ::std::ptr::addr_of!((*this)._bitfield_1),
                0usize,
                24u8,
            ) as u64)
        }
    }
    #[inline]
    pub unsafe fn set_Reserved_raw(this: *mut Self, val: ULONG64) {
        unsafe {
            let val: u64 = ::std::mem::transmute(val);
            <__BindgenBitfieldUnit<[u8; 8usize]>>::raw_set(
                ::std::ptr::addr_of_mut!((*this)._bitfield_1),
                0usize,
                24u8,
                val as u64,
            )
        }
    }
    #[inline]
    pub fn NetLuidIndex(&self) -> ULONG64 {
        unsafe { ::std::mem::transmute(self._bitfield_1.get(24usize, 24u8) as u64) }
    }
    #[inline]
    pub fn set_NetLuidIndex(&mut self, val: ULONG64) {
        unsafe {
            let val: u64 = ::std::mem::transmute(val);
            self._bitfield_1.set(24usize, 24u8, val as u64)
        }
    }
    #[inline]
    pub unsafe fn NetLuidIndex_raw(this: *const Self) -> ULONG64 {
        unsafe {
            ::std::mem::transmute(<__BindgenBitfieldUnit<[u8; 8usize]>>::raw_get(
                ::std::ptr::addr_of!((*this)._bitfield_1),
                24usize,
                24u8,
            ) as u64)
        }
    }
    #[inline]
    pub unsafe fn set_NetLuidIndex_raw(this: *mut Self, val: ULONG64) {
        unsafe {
            let val: u64 = ::std::mem::transmute(val);
            <__BindgenBitfieldUnit<[u8; 8usize]>>::raw_set(
                ::std::ptr::addr_of_mut!((*this)._bitfield_1),
                24usize,
                24u8,
                val as u64,
            )
        }
    }
    #[inline]
    pub fn IfType(&self) -> ULONG64 {
        unsafe { ::std::mem::transmute(self._bitfield_1.get(48usize, 16u8) as u64) }
    }
    #[inline]
    pub fn set_IfType(&mut self, val: ULONG64) {
        unsafe {
            let val: u64 = ::std::mem::transmute(val);
            self._bitfield_1.set(48usize, 16u8, val as u64)
        }
    }
    #[inline]
    pub unsafe fn IfType_raw(this: *const Self) -> ULONG64 {
        unsafe {
            ::std::mem::transmute(<__BindgenBitfieldUnit<[u8; 8usize]>>::raw_get(
                ::std::ptr::addr_of!((*this)._bitfield_1),
                48usize,
                16u8,
            ) as u64)
        }
    }
    #[inline]
    pub unsafe fn set_IfType_raw(this: *mut Self, val: ULONG64) {
        unsafe {
            let val: u64 = ::std::mem::transmute(val);
            <__BindgenBitfieldUnit<[u8; 8usize]>>::raw_set(
                ::std::ptr::addr_of_mut!((*this)._bitfield_1),
                48usize,
                16u8,
                val as u64,
            )
        }
    }
    #[inline]
    pub fn new_bitfield_1(
        Reserved: ULONG64,
        NetLuidIndex: ULONG64,
        IfType: ULONG64,
    ) -> __BindgenBitfieldUnit<[u8; 8usize]> {
        let mut __bindgen_bitfield_unit: __BindgenBitfieldUnit<[u8; 8usize]> = Default::default();
        __bindgen_bitfield_unit.set(0usize, 24u8, {
            let Reserved: u64 = unsafe { ::std::mem::transmute(Reserved) };
            Reserved as u64
        });
        __bindgen_bitfield_unit.set(24usize, 24u8, {
            let NetLuidIndex: u64 = unsafe { ::std::mem::transmute(NetLuidIndex) };
            NetLuidIndex as u64
        });
        __bindgen_bitfield_unit.set(48usize, 16u8, {
            let IfType: u64 = unsafe { ::std::mem::transmute(IfType) };
            IfType as u64
        });
        __bindgen_bitfield_unit
    }
}
#[allow(clippy::unnecessary_operation, clippy::identity_op)]
const _: () = {
    ["Size of _NET_LUID_LH"][::std::mem::size_of::<_NET_LUID_LH>() - 8usize];
    ["Alignment of _NET_LUID_LH"][::std::mem::align_of::<_NET_LUID_LH>() - 8usize];
    ["Offset of field: _NET_LUID_LH::Value"][::std::mem::offset_of!(_NET_LUID_LH, Value) - 0usize];
    ["Offset of field: _NET_LUID_LH::Info"][::std::mem::offset_of!(_NET_LUID_LH, Info) - 0usize];
};
pub type NET_LUID_LH = _NET_LUID_LH;
pub type NET_LUID = NET_LUID_LH;
pub type IF_LUID = NET_LUID;
pub type NET_IFINDEX = ULONG;
pub type IF_INDEX = NET_IFINDEX;
pub const _NET_IF_CONNECTION_TYPE_NET_IF_CONNECTION_DEDICATED: _NET_IF_CONNECTION_TYPE = 1;
pub const _NET_IF_CONNECTION_TYPE_NET_IF_CONNECTION_PASSIVE: _NET_IF_CONNECTION_TYPE = 2;
pub const _NET_IF_CONNECTION_TYPE_NET_IF_CONNECTION_DEMAND: _NET_IF_CONNECTION_TYPE = 3;
pub const _NET_IF_CONNECTION_TYPE_NET_IF_CONNECTION_MAXIMUM: _NET_IF_CONNECTION_TYPE = 4;
pub type _NET_IF_CONNECTION_TYPE = ::std::os::raw::c_int;
pub use self::_NET_IF_CONNECTION_TYPE as NET_IF_CONNECTION_TYPE;
pub const TUNNEL_TYPE_TUNNEL_TYPE_NONE: TUNNEL_TYPE = 0;
pub const TUNNEL_TYPE_TUNNEL_TYPE_OTHER: TUNNEL_TYPE = 1;
pub const TUNNEL_TYPE_TUNNEL_TYPE_DIRECT: TUNNEL_TYPE = 2;
pub const TUNNEL_TYPE_TUNNEL_TYPE_6TO4: TUNNEL_TYPE = 11;
pub const TUNNEL_TYPE_TUNNEL_TYPE_ISATAP: TUNNEL_TYPE = 13;
pub const TUNNEL_TYPE_TUNNEL_TYPE_TEREDO: TUNNEL_TYPE = 14;
pub const TUNNEL_TYPE_TUNNEL_TYPE_IPHTTPS: TUNNEL_TYPE = 15;
pub type TUNNEL_TYPE = ::std::os::raw::c_int;
pub const IF_OPER_STATUS_IfOperStatusUp: IF_OPER_STATUS = 1;
pub const IF_OPER_STATUS_IfOperStatusDown: IF_OPER_STATUS = 2;
pub const IF_OPER_STATUS_IfOperStatusTesting: IF_OPER_STATUS = 3;
pub const IF_OPER_STATUS_IfOperStatusUnknown: IF_OPER_STATUS = 4;
pub const IF_OPER_STATUS_IfOperStatusDormant: IF_OPER_STATUS = 5;
pub const IF_OPER_STATUS_IfOperStatusNotPresent: IF_OPER_STATUS = 6;
pub const IF_OPER_STATUS_IfOperStatusLowerLayerDown: IF_OPER_STATUS = 7;
pub type IF_OPER_STATUS = ::std::os::raw::c_int;
pub const NL_PREFIX_ORIGIN_IpPrefixOriginOther: NL_PREFIX_ORIGIN = 0;
pub const NL_PREFIX_ORIGIN_IpPrefixOriginManual: NL_PREFIX_ORIGIN = 1;
pub const NL_PREFIX_ORIGIN_IpPrefixOriginWellKnown: NL_PREFIX_ORIGIN = 2;
pub const NL_PREFIX_ORIGIN_IpPrefixOriginDhcp: NL_PREFIX_ORIGIN = 3;
pub const NL_PREFIX_ORIGIN_IpPrefixOriginRouterAdvertisement: NL_PREFIX_ORIGIN = 4;
pub const NL_PREFIX_ORIGIN_IpPrefixOriginUnchanged: NL_PREFIX_ORIGIN = 16;
pub type NL_PREFIX_ORIGIN = ::std::os::raw::c_int;
pub const NL_SUFFIX_ORIGIN_NlsoOther: NL_SUFFIX_ORIGIN = 0;
pub const NL_SUFFIX_ORIGIN_NlsoManual: NL_SUFFIX_ORIGIN = 1;
pub const NL_SUFFIX_ORIGIN_NlsoWellKnown: NL_SUFFIX_ORIGIN = 2;
pub const NL_SUFFIX_ORIGIN_NlsoDhcp: NL_SUFFIX_ORIGIN = 3;
pub const NL_SUFFIX_ORIGIN_NlsoLinkLayerAddress: NL_SUFFIX_ORIGIN = 4;
pub const NL_SUFFIX_ORIGIN_NlsoRandom: NL_SUFFIX_ORIGIN = 5;
pub const NL_SUFFIX_ORIGIN_IpSuffixOriginOther: NL_SUFFIX_ORIGIN = 0;
pub const NL_SUFFIX_ORIGIN_IpSuffixOriginManual: NL_SUFFIX_ORIGIN = 1;
pub const NL_SUFFIX_ORIGIN_IpSuffixOriginWellKnown: NL_SUFFIX_ORIGIN = 2;
pub const NL_SUFFIX_ORIGIN_IpSuffixOriginDhcp: NL_SUFFIX_ORIGIN = 3;
pub const NL_SUFFIX_ORIGIN_IpSuffixOriginLinkLayerAddress: NL_SUFFIX_ORIGIN = 4;
pub const NL_SUFFIX_ORIGIN_IpSuffixOriginRandom: NL_SUFFIX_ORIGIN = 5;
pub const NL_SUFFIX_ORIGIN_IpSuffixOriginUnchanged: NL_SUFFIX_ORIGIN = 16;
pub type NL_SUFFIX_ORIGIN = ::std::os::raw::c_int;
pub const NL_DAD_STATE_NldsInvalid: NL_DAD_STATE = 0;
pub const NL_DAD_STATE_NldsTentative: NL_DAD_STATE = 1;
pub const NL_DAD_STATE_NldsDuplicate: NL_DAD_STATE = 2;
pub const NL_DAD_STATE_NldsDeprecated: NL_DAD_STATE = 3;
pub const NL_DAD_STATE_NldsPreferred: NL_DAD_STATE = 4;
pub const NL_DAD_STATE_IpDadStateInvalid: NL_DAD_STATE = 0;
pub const NL_DAD_STATE_IpDadStateTentative: NL_DAD_STATE = 1;
pub const NL_DAD_STATE_IpDadStateDuplicate: NL_DAD_STATE = 2;
pub const NL_DAD_STATE_IpDadStateDeprecated: NL_DAD_STATE = 3;
pub const NL_DAD_STATE_IpDadStatePreferred: NL_DAD_STATE = 4;
pub type NL_DAD_STATE = ::std::os::raw::c_int;
pub use self::NL_DAD_STATE as IP_DAD_STATE;
pub use self::NL_PREFIX_ORIGIN as IP_PREFIX_ORIGIN;
pub use self::NL_SUFFIX_ORIGIN as IP_SUFFIX_ORIGIN;
#[repr(C)]
#[derive(Copy, Clone)]
pub struct _IP_ADAPTER_UNICAST_ADDRESS_LH {
    pub __bindgen_anon_1: _IP_ADAPTER_UNICAST_ADDRESS_LH__bindgen_ty_1,
    pub Next: *mut _IP_ADAPTER_UNICAST_ADDRESS_LH,
    pub Address: SOCKET_ADDRESS,
    pub PrefixOrigin: IP_PREFIX_ORIGIN,
    pub SuffixOrigin: IP_SUFFIX_ORIGIN,
    pub DadState: IP_DAD_STATE,
    pub ValidLifetime: ULONG,
    pub PreferredLifetime: ULONG,
    pub LeaseLifetime: ULONG,
    pub OnLinkPrefixLength: UINT8,
}
#[repr(C)]
#[derive(Copy, Clone)]
pub union _IP_ADAPTER_UNICAST_ADDRESS_LH__bindgen_ty_1 {
    pub Alignment: ULONGLONG,
    pub __bindgen_anon_1: _IP_ADAPTER_UNICAST_ADDRESS_LH__bindgen_ty_1__bindgen_ty_1,
}
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct _IP_ADAPTER_UNICAST_ADDRESS_LH__bindgen_ty_1__bindgen_ty_1 {
    pub Length: ULONG,
    pub Flags: DWORD,
}
#[allow(clippy::unnecessary_operation, clippy::identity_op)]
const _: () = {
    ["Size of _IP_ADAPTER_UNICAST_ADDRESS_LH__bindgen_ty_1__bindgen_ty_1"][::std::mem::size_of::<
        _IP_ADAPTER_UNICAST_ADDRESS_LH__bindgen_ty_1__bindgen_ty_1,
    >() - 8usize];
    ["Alignment of _IP_ADAPTER_UNICAST_ADDRESS_LH__bindgen_ty_1__bindgen_ty_1"][::std::mem::align_of::<
        _IP_ADAPTER_UNICAST_ADDRESS_LH__bindgen_ty_1__bindgen_ty_1,
    >() - 4usize];
    ["Offset of field: _IP_ADAPTER_UNICAST_ADDRESS_LH__bindgen_ty_1__bindgen_ty_1::Length"][::std::mem::offset_of!(
        _IP_ADAPTER_UNICAST_ADDRESS_LH__bindgen_ty_1__bindgen_ty_1,
        Length
    )
        - 0usize];
    ["Offset of field: _IP_ADAPTER_UNICAST_ADDRESS_LH__bindgen_ty_1__bindgen_ty_1::Flags"][::std::mem::offset_of!(
        _IP_ADAPTER_UNICAST_ADDRESS_LH__bindgen_ty_1__bindgen_ty_1,
        Flags
    )
        - 4usize];
};
#[allow(clippy::unnecessary_operation, clippy::identity_op)]
const _: () = {
    ["Size of _IP_ADAPTER_UNICAST_ADDRESS_LH__bindgen_ty_1"]
        [::std::mem::size_of::<_IP_ADAPTER_UNICAST_ADDRESS_LH__bindgen_ty_1>() - 8usize];
    ["Alignment of _IP_ADAPTER_UNICAST_ADDRESS_LH__bindgen_ty_1"]
        [::std::mem::align_of::<_IP_ADAPTER_UNICAST_ADDRESS_LH__bindgen_ty_1>() - 8usize];
    ["Offset of field: _IP_ADAPTER_UNICAST_ADDRESS_LH__bindgen_ty_1::Alignment"]
        [::std::mem::offset_of!(_IP_ADAPTER_UNICAST_ADDRESS_LH__bindgen_ty_1, Alignment) - 0usize];
};
#[allow(clippy::unnecessary_operation, clippy::identity_op)]
const _: () = {
    ["Size of _IP_ADAPTER_UNICAST_ADDRESS_LH"]
        [::std::mem::size_of::<_IP_ADAPTER_UNICAST_ADDRESS_LH>() - 64usize];
    ["Alignment of _IP_ADAPTER_UNICAST_ADDRESS_LH"]
        [::std::mem::align_of::<_IP_ADAPTER_UNICAST_ADDRESS_LH>() - 8usize];
    ["Offset of field: _IP_ADAPTER_UNICAST_ADDRESS_LH::Next"]
        [::std::mem::offset_of!(_IP_ADAPTER_UNICAST_ADDRESS_LH, Next) - 8usize];
    ["Offset of field: _IP_ADAPTER_UNICAST_ADDRESS_LH::Address"]
        [::std::mem::offset_of!(_IP_ADAPTER_UNICAST_ADDRESS_LH, Address) - 16usize];
    ["Offset of field: _IP_ADAPTER_UNICAST_ADDRESS_LH::PrefixOrigin"]
        [::std::mem::offset_of!(_IP_ADAPTER_UNICAST_ADDRESS_LH, PrefixOrigin) - 32usize];
    ["Offset of field: _IP_ADAPTER_UNICAST_ADDRESS_LH::SuffixOrigin"]
        [::std::mem::offset_of!(_IP_ADAPTER_UNICAST_ADDRESS_LH, SuffixOrigin) - 36usize];
    ["Offset of field: _IP_ADAPTER_UNICAST_ADDRESS_LH::DadState"]
        [::std::mem::offset_of!(_IP_ADAPTER_UNICAST_ADDRESS_LH, DadState) - 40usize];
    ["Offset of field: _IP_ADAPTER_UNICAST_ADDRESS_LH::ValidLifetime"]
        [::std::mem::offset_of!(_IP_ADAPTER_UNICAST_ADDRESS_LH, ValidLifetime) - 44usize];
    ["Offset of field: _IP_ADAPTER_UNICAST_ADDRESS_LH::PreferredLifetime"]
        [::std::mem::offset_of!(_IP_ADAPTER_UNICAST_ADDRESS_LH, PreferredLifetime) - 48usize];
    ["Offset of field: _IP_ADAPTER_UNICAST_ADDRESS_LH::LeaseLifetime"]
        [::std::mem::offset_of!(_IP_ADAPTER_UNICAST_ADDRESS_LH, LeaseLifetime) - 52usize];
    ["Offset of field: _IP_ADAPTER_UNICAST_ADDRESS_LH::OnLinkPrefixLength"]
        [::std::mem::offset_of!(_IP_ADAPTER_UNICAST_ADDRESS_LH, OnLinkPrefixLength) - 56usize];
};
pub type PIP_ADAPTER_UNICAST_ADDRESS_LH = *mut _IP_ADAPTER_UNICAST_ADDRESS_LH;
#[repr(C)]
#[derive(Copy, Clone)]
pub struct _IP_ADAPTER_ANYCAST_ADDRESS_XP {
    pub __bindgen_anon_1: _IP_ADAPTER_ANYCAST_ADDRESS_XP__bindgen_ty_1,
    pub Next: *mut _IP_ADAPTER_ANYCAST_ADDRESS_XP,
    pub Address: SOCKET_ADDRESS,
}
#[repr(C)]
#[derive(Copy, Clone)]
pub union _IP_ADAPTER_ANYCAST_ADDRESS_XP__bindgen_ty_1 {
    pub Alignment: ULONGLONG,
    pub __bindgen_anon_1: _IP_ADAPTER_ANYCAST_ADDRESS_XP__bindgen_ty_1__bindgen_ty_1,
}
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct _IP_ADAPTER_ANYCAST_ADDRESS_XP__bindgen_ty_1__bindgen_ty_1 {
    pub Length: ULONG,
    pub Flags: DWORD,
}
#[allow(clippy::unnecessary_operation, clippy::identity_op)]
const _: () = {
    ["Size of _IP_ADAPTER_ANYCAST_ADDRESS_XP__bindgen_ty_1__bindgen_ty_1"][::std::mem::size_of::<
        _IP_ADAPTER_ANYCAST_ADDRESS_XP__bindgen_ty_1__bindgen_ty_1,
    >() - 8usize];
    ["Alignment of _IP_ADAPTER_ANYCAST_ADDRESS_XP__bindgen_ty_1__bindgen_ty_1"][::std::mem::align_of::<
        _IP_ADAPTER_ANYCAST_ADDRESS_XP__bindgen_ty_1__bindgen_ty_1,
    >() - 4usize];
    ["Offset of field: _IP_ADAPTER_ANYCAST_ADDRESS_XP__bindgen_ty_1__bindgen_ty_1::Length"][::std::mem::offset_of!(
        _IP_ADAPTER_ANYCAST_ADDRESS_XP__bindgen_ty_1__bindgen_ty_1,
        Length
    )
        - 0usize];
    ["Offset of field: _IP_ADAPTER_ANYCAST_ADDRESS_XP__bindgen_ty_1__bindgen_ty_1::Flags"][::std::mem::offset_of!(
        _IP_ADAPTER_ANYCAST_ADDRESS_XP__bindgen_ty_1__bindgen_ty_1,
        Flags
    )
        - 4usize];
};
#[allow(clippy::unnecessary_operation, clippy::identity_op)]
const _: () = {
    ["Size of _IP_ADAPTER_ANYCAST_ADDRESS_XP__bindgen_ty_1"]
        [::std::mem::size_of::<_IP_ADAPTER_ANYCAST_ADDRESS_XP__bindgen_ty_1>() - 8usize];
    ["Alignment of _IP_ADAPTER_ANYCAST_ADDRESS_XP__bindgen_ty_1"]
        [::std::mem::align_of::<_IP_ADAPTER_ANYCAST_ADDRESS_XP__bindgen_ty_1>() - 8usize];
    ["Offset of field: _IP_ADAPTER_ANYCAST_ADDRESS_XP__bindgen_ty_1::Alignment"]
        [::std::mem::offset_of!(_IP_ADAPTER_ANYCAST_ADDRESS_XP__bindgen_ty_1, Alignment) - 0usize];
};
#[allow(clippy::unnecessary_operation, clippy::identity_op)]
const _: () = {
    ["Size of _IP_ADAPTER_ANYCAST_ADDRESS_XP"]
        [::std::mem::size_of::<_IP_ADAPTER_ANYCAST_ADDRESS_XP>() - 32usize];
    ["Alignment of _IP_ADAPTER_ANYCAST_ADDRESS_XP"]
        [::std::mem::align_of::<_IP_ADAPTER_ANYCAST_ADDRESS_XP>() - 8usize];
    ["Offset of field: _IP_ADAPTER_ANYCAST_ADDRESS_XP::Next"]
        [::std::mem::offset_of!(_IP_ADAPTER_ANYCAST_ADDRESS_XP, Next) - 8usize];
    ["Offset of field: _IP_ADAPTER_ANYCAST_ADDRESS_XP::Address"]
        [::std::mem::offset_of!(_IP_ADAPTER_ANYCAST_ADDRESS_XP, Address) - 16usize];
};
pub type PIP_ADAPTER_ANYCAST_ADDRESS_XP = *mut _IP_ADAPTER_ANYCAST_ADDRESS_XP;
#[repr(C)]
#[derive(Copy, Clone)]
pub struct _IP_ADAPTER_MULTICAST_ADDRESS_XP {
    pub __bindgen_anon_1: _IP_ADAPTER_MULTICAST_ADDRESS_XP__bindgen_ty_1,
    pub Next: *mut _IP_ADAPTER_MULTICAST_ADDRESS_XP,
    pub Address: SOCKET_ADDRESS,
}
#[repr(C)]
#[derive(Copy, Clone)]
pub union _IP_ADAPTER_MULTICAST_ADDRESS_XP__bindgen_ty_1 {
    pub Alignment: ULONGLONG,
    pub __bindgen_anon_1: _IP_ADAPTER_MULTICAST_ADDRESS_XP__bindgen_ty_1__bindgen_ty_1,
}
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct _IP_ADAPTER_MULTICAST_ADDRESS_XP__bindgen_ty_1__bindgen_ty_1 {
    pub Length: ULONG,
    pub Flags: DWORD,
}
#[allow(clippy::unnecessary_operation, clippy::identity_op)]
const _: () = {
    ["Size of _IP_ADAPTER_MULTICAST_ADDRESS_XP__bindgen_ty_1__bindgen_ty_1"][::std::mem::size_of::<
        _IP_ADAPTER_MULTICAST_ADDRESS_XP__bindgen_ty_1__bindgen_ty_1,
    >() - 8usize];
    ["Alignment of _IP_ADAPTER_MULTICAST_ADDRESS_XP__bindgen_ty_1__bindgen_ty_1"]
        [::std::mem::align_of::<_IP_ADAPTER_MULTICAST_ADDRESS_XP__bindgen_ty_1__bindgen_ty_1>()
            - 4usize];
    ["Offset of field: _IP_ADAPTER_MULTICAST_ADDRESS_XP__bindgen_ty_1__bindgen_ty_1::Length"][::std::mem::offset_of!(
        _IP_ADAPTER_MULTICAST_ADDRESS_XP__bindgen_ty_1__bindgen_ty_1,
        Length
    )
        - 0usize];
    ["Offset of field: _IP_ADAPTER_MULTICAST_ADDRESS_XP__bindgen_ty_1__bindgen_ty_1::Flags"][::std::mem::offset_of!(
        _IP_ADAPTER_MULTICAST_ADDRESS_XP__bindgen_ty_1__bindgen_ty_1,
        Flags
    )
        - 4usize];
};
#[allow(clippy::unnecessary_operation, clippy::identity_op)]
const _: () = {
    ["Size of _IP_ADAPTER_MULTICAST_ADDRESS_XP__bindgen_ty_1"]
        [::std::mem::size_of::<_IP_ADAPTER_MULTICAST_ADDRESS_XP__bindgen_ty_1>() - 8usize];
    ["Alignment of _IP_ADAPTER_MULTICAST_ADDRESS_XP__bindgen_ty_1"]
        [::std::mem::align_of::<_IP_ADAPTER_MULTICAST_ADDRESS_XP__bindgen_ty_1>() - 8usize];
    ["Offset of field: _IP_ADAPTER_MULTICAST_ADDRESS_XP__bindgen_ty_1::Alignment"][::std::mem::offset_of!(
        _IP_ADAPTER_MULTICAST_ADDRESS_XP__bindgen_ty_1,
        Alignment
    ) - 0usize];
};
#[allow(clippy::unnecessary_operation, clippy::identity_op)]
const _: () = {
    ["Size of _IP_ADAPTER_MULTICAST_ADDRESS_XP"]
        [::std::mem::size_of::<_IP_ADAPTER_MULTICAST_ADDRESS_XP>() - 32usize];
    ["Alignment of _IP_ADAPTER_MULTICAST_ADDRESS_XP"]
        [::std::mem::align_of::<_IP_ADAPTER_MULTICAST_ADDRESS_XP>() - 8usize];
    ["Offset of field: _IP_ADAPTER_MULTICAST_ADDRESS_XP::Next"]
        [::std::mem::offset_of!(_IP_ADAPTER_MULTICAST_ADDRESS_XP, Next) - 8usize];
    ["Offset of field: _IP_ADAPTER_MULTICAST_ADDRESS_XP::Address"]
        [::std::mem::offset_of!(_IP_ADAPTER_MULTICAST_ADDRESS_XP, Address) - 16usize];
};
pub type PIP_ADAPTER_MULTICAST_ADDRESS_XP = *mut _IP_ADAPTER_MULTICAST_ADDRESS_XP;
#[repr(C)]
#[derive(Copy, Clone)]
pub struct _IP_ADAPTER_DNS_SERVER_ADDRESS_XP {
    pub __bindgen_anon_1: _IP_ADAPTER_DNS_SERVER_ADDRESS_XP__bindgen_ty_1,
    pub Next: *mut _IP_ADAPTER_DNS_SERVER_ADDRESS_XP,
    pub Address: SOCKET_ADDRESS,
}
#[repr(C)]
#[derive(Copy, Clone)]
pub union _IP_ADAPTER_DNS_SERVER_ADDRESS_XP__bindgen_ty_1 {
    pub Alignment: ULONGLONG,
    pub __bindgen_anon_1: _IP_ADAPTER_DNS_SERVER_ADDRESS_XP__bindgen_ty_1__bindgen_ty_1,
}
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct _IP_ADAPTER_DNS_SERVER_ADDRESS_XP__bindgen_ty_1__bindgen_ty_1 {
    pub Length: ULONG,
    pub Reserved: DWORD,
}
#[allow(clippy::unnecessary_operation, clippy::identity_op)]
const _: () = {
    ["Size of _IP_ADAPTER_DNS_SERVER_ADDRESS_XP__bindgen_ty_1__bindgen_ty_1"][::std::mem::size_of::<
        _IP_ADAPTER_DNS_SERVER_ADDRESS_XP__bindgen_ty_1__bindgen_ty_1,
    >() - 8usize];
    ["Alignment of _IP_ADAPTER_DNS_SERVER_ADDRESS_XP__bindgen_ty_1__bindgen_ty_1"]
        [::std::mem::align_of::<_IP_ADAPTER_DNS_SERVER_ADDRESS_XP__bindgen_ty_1__bindgen_ty_1>()
            - 4usize];
    ["Offset of field: _IP_ADAPTER_DNS_SERVER_ADDRESS_XP__bindgen_ty_1__bindgen_ty_1::Length"][::std::mem::offset_of!(
        _IP_ADAPTER_DNS_SERVER_ADDRESS_XP__bindgen_ty_1__bindgen_ty_1,
        Length
    )
        - 0usize];
    ["Offset of field: _IP_ADAPTER_DNS_SERVER_ADDRESS_XP__bindgen_ty_1__bindgen_ty_1::Reserved"][::std::mem::offset_of!(
        _IP_ADAPTER_DNS_SERVER_ADDRESS_XP__bindgen_ty_1__bindgen_ty_1,
        Reserved
    )
        - 4usize];
};
#[allow(clippy::unnecessary_operation, clippy::identity_op)]
const _: () = {
    ["Size of _IP_ADAPTER_DNS_SERVER_ADDRESS_XP__bindgen_ty_1"]
        [::std::mem::size_of::<_IP_ADAPTER_DNS_SERVER_ADDRESS_XP__bindgen_ty_1>() - 8usize];
    ["Alignment of _IP_ADAPTER_DNS_SERVER_ADDRESS_XP__bindgen_ty_1"]
        [::std::mem::align_of::<_IP_ADAPTER_DNS_SERVER_ADDRESS_XP__bindgen_ty_1>() - 8usize];
    ["Offset of field: _IP_ADAPTER_DNS_SERVER_ADDRESS_XP__bindgen_ty_1::Alignment"][::std::mem::offset_of!(
        _IP_ADAPTER_DNS_SERVER_ADDRESS_XP__bindgen_ty_1,
        Alignment
    ) - 0usize];
};
#[allow(clippy::unnecessary_operation, clippy::identity_op)]
const _: () = {
    ["Size of _IP_ADAPTER_DNS_SERVER_ADDRESS_XP"]
        [::std::mem::size_of::<_IP_ADAPTER_DNS_SERVER_ADDRESS_XP>() - 32usize];
    ["Alignment of _IP_ADAPTER_DNS_SERVER_ADDRESS_XP"]
        [::std::mem::align_of::<_IP_ADAPTER_DNS_SERVER_ADDRESS_XP>() - 8usize];
    ["Offset of field: _IP_ADAPTER_DNS_SERVER_ADDRESS_XP::Next"]
        [::std::mem::offset_of!(_IP_ADAPTER_DNS_SERVER_ADDRESS_XP, Next) - 8usize];
    ["Offset of field: _IP_ADAPTER_DNS_SERVER_ADDRESS_XP::Address"]
        [::std::mem::offset_of!(_IP_ADAPTER_DNS_SERVER_ADDRESS_XP, Address) - 16usize];
};
pub type PIP_ADAPTER_DNS_SERVER_ADDRESS_XP = *mut _IP_ADAPTER_DNS_SERVER_ADDRESS_XP;
#[repr(C)]
#[derive(Copy, Clone)]
pub struct _IP_ADAPTER_WINS_SERVER_ADDRESS_LH {
    pub __bindgen_anon_1: _IP_ADAPTER_WINS_SERVER_ADDRESS_LH__bindgen_ty_1,
    pub Next: *mut _IP_ADAPTER_WINS_SERVER_ADDRESS_LH,
    pub Address: SOCKET_ADDRESS,
}
#[repr(C)]
#[derive(Copy, Clone)]
pub union _IP_ADAPTER_WINS_SERVER_ADDRESS_LH__bindgen_ty_1 {
    pub Alignment: ULONGLONG,
    pub __bindgen_anon_1: _IP_ADAPTER_WINS_SERVER_ADDRESS_LH__bindgen_ty_1__bindgen_ty_1,
}
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct _IP_ADAPTER_WINS_SERVER_ADDRESS_LH__bindgen_ty_1__bindgen_ty_1 {
    pub Length: ULONG,
    pub Reserved: DWORD,
}
#[allow(clippy::unnecessary_operation, clippy::identity_op)]
const _: () = {
    ["Size of _IP_ADAPTER_WINS_SERVER_ADDRESS_LH__bindgen_ty_1__bindgen_ty_1"][::std::mem::size_of::<
        _IP_ADAPTER_WINS_SERVER_ADDRESS_LH__bindgen_ty_1__bindgen_ty_1,
    >() - 8usize];
    ["Alignment of _IP_ADAPTER_WINS_SERVER_ADDRESS_LH__bindgen_ty_1__bindgen_ty_1"]
        [::std::mem::align_of::<_IP_ADAPTER_WINS_SERVER_ADDRESS_LH__bindgen_ty_1__bindgen_ty_1>()
            - 4usize];
    ["Offset of field: _IP_ADAPTER_WINS_SERVER_ADDRESS_LH__bindgen_ty_1__bindgen_ty_1::Length"][::std::mem::offset_of!(
        _IP_ADAPTER_WINS_SERVER_ADDRESS_LH__bindgen_ty_1__bindgen_ty_1,
        Length
    )
        - 0usize];
    ["Offset of field: _IP_ADAPTER_WINS_SERVER_ADDRESS_LH__bindgen_ty_1__bindgen_ty_1::Reserved"][::std::mem::offset_of!(
        _IP_ADAPTER_WINS_SERVER_ADDRESS_LH__bindgen_ty_1__bindgen_ty_1,
        Reserved
    )
        - 4usize];
};
#[allow(clippy::unnecessary_operation, clippy::identity_op)]
const _: () = {
    ["Size of _IP_ADAPTER_WINS_SERVER_ADDRESS_LH__bindgen_ty_1"]
        [::std::mem::size_of::<_IP_ADAPTER_WINS_SERVER_ADDRESS_LH__bindgen_ty_1>() - 8usize];
    ["Alignment of _IP_ADAPTER_WINS_SERVER_ADDRESS_LH__bindgen_ty_1"]
        [::std::mem::align_of::<_IP_ADAPTER_WINS_SERVER_ADDRESS_LH__bindgen_ty_1>() - 8usize];
    ["Offset of field: _IP_ADAPTER_WINS_SERVER_ADDRESS_LH__bindgen_ty_1::Alignment"][::std::mem::offset_of!(
        _IP_ADAPTER_WINS_SERVER_ADDRESS_LH__bindgen_ty_1,
        Alignment
    ) - 0usize];
};
#[allow(clippy::unnecessary_operation, clippy::identity_op)]
const _: () = {
    ["Size of _IP_ADAPTER_WINS_SERVER_ADDRESS_LH"]
        [::std::mem::size_of::<_IP_ADAPTER_WINS_SERVER_ADDRESS_LH>() - 32usize];
    ["Alignment of _IP_ADAPTER_WINS_SERVER_ADDRESS_LH"]
        [::std::mem::align_of::<_IP_ADAPTER_WINS_SERVER_ADDRESS_LH>() - 8usize];
    ["Offset of field: _IP_ADAPTER_WINS_SERVER_ADDRESS_LH::Next"]
        [::std::mem::offset_of!(_IP_ADAPTER_WINS_SERVER_ADDRESS_LH, Next) - 8usize];
    ["Offset of field: _IP_ADAPTER_WINS_SERVER_ADDRESS_LH::Address"]
        [::std::mem::offset_of!(_IP_ADAPTER_WINS_SERVER_ADDRESS_LH, Address) - 16usize];
};
pub type PIP_ADAPTER_WINS_SERVER_ADDRESS_LH = *mut _IP_ADAPTER_WINS_SERVER_ADDRESS_LH;
#[repr(C)]
#[derive(Copy, Clone)]
pub struct _IP_ADAPTER_GATEWAY_ADDRESS_LH {
    pub __bindgen_anon_1: _IP_ADAPTER_GATEWAY_ADDRESS_LH__bindgen_ty_1,
    pub Next: *mut _IP_ADAPTER_GATEWAY_ADDRESS_LH,
    pub Address: SOCKET_ADDRESS,
}
#[repr(C)]
#[derive(Copy, Clone)]
pub union _IP_ADAPTER_GATEWAY_ADDRESS_LH__bindgen_ty_1 {
    pub Alignment: ULONGLONG,
    pub __bindgen_anon_1: _IP_ADAPTER_GATEWAY_ADDRESS_LH__bindgen_ty_1__bindgen_ty_1,
}
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct _IP_ADAPTER_GATEWAY_ADDRESS_LH__bindgen_ty_1__bindgen_ty_1 {
    pub Length: ULONG,
    pub Reserved: DWORD,
}
#[allow(clippy::unnecessary_operation, clippy::identity_op)]
const _: () = {
    ["Size of _IP_ADAPTER_GATEWAY_ADDRESS_LH__bindgen_ty_1__bindgen_ty_1"][::std::mem::size_of::<
        _IP_ADAPTER_GATEWAY_ADDRESS_LH__bindgen_ty_1__bindgen_ty_1,
    >() - 8usize];
    ["Alignment of _IP_ADAPTER_GATEWAY_ADDRESS_LH__bindgen_ty_1__bindgen_ty_1"][::std::mem::align_of::<
        _IP_ADAPTER_GATEWAY_ADDRESS_LH__bindgen_ty_1__bindgen_ty_1,
    >() - 4usize];
    ["Offset of field: _IP_ADAPTER_GATEWAY_ADDRESS_LH__bindgen_ty_1__bindgen_ty_1::Length"][::std::mem::offset_of!(
        _IP_ADAPTER_GATEWAY_ADDRESS_LH__bindgen_ty_1__bindgen_ty_1,
        Length
    )
        - 0usize];
    ["Offset of field: _IP_ADAPTER_GATEWAY_ADDRESS_LH__bindgen_ty_1__bindgen_ty_1::Reserved"][::std::mem::offset_of!(
        _IP_ADAPTER_GATEWAY_ADDRESS_LH__bindgen_ty_1__bindgen_ty_1,
        Reserved
    )
        - 4usize];
};
#[allow(clippy::unnecessary_operation, clippy::identity_op)]
const _: () = {
    ["Size of _IP_ADAPTER_GATEWAY_ADDRESS_LH__bindgen_ty_1"]
        [::std::mem::size_of::<_IP_ADAPTER_GATEWAY_ADDRESS_LH__bindgen_ty_1>() - 8usize];
    ["Alignment of _IP_ADAPTER_GATEWAY_ADDRESS_LH__bindgen_ty_1"]
        [::std::mem::align_of::<_IP_ADAPTER_GATEWAY_ADDRESS_LH__bindgen_ty_1>() - 8usize];
    ["Offset of field: _IP_ADAPTER_GATEWAY_ADDRESS_LH__bindgen_ty_1::Alignment"]
        [::std::mem::offset_of!(_IP_ADAPTER_GATEWAY_ADDRESS_LH__bindgen_ty_1, Alignment) - 0usize];
};
#[allow(clippy::unnecessary_operation, clippy::identity_op)]
const _: () = {
    ["Size of _IP_ADAPTER_GATEWAY_ADDRESS_LH"]
        [::std::mem::size_of::<_IP_ADAPTER_GATEWAY_ADDRESS_LH>() - 32usize];
    ["Alignment of _IP_ADAPTER_GATEWAY_ADDRESS_LH"]
        [::std::mem::align_of::<_IP_ADAPTER_GATEWAY_ADDRESS_LH>() - 8usize];
    ["Offset of field: _IP_ADAPTER_GATEWAY_ADDRESS_LH::Next"]
        [::std::mem::offset_of!(_IP_ADAPTER_GATEWAY_ADDRESS_LH, Next) - 8usize];
    ["Offset of field: _IP_ADAPTER_GATEWAY_ADDRESS_LH::Address"]
        [::std::mem::offset_of!(_IP_ADAPTER_GATEWAY_ADDRESS_LH, Address) - 16usize];
};
pub type PIP_ADAPTER_GATEWAY_ADDRESS_LH = *mut _IP_ADAPTER_GATEWAY_ADDRESS_LH;
#[repr(C)]
#[derive(Copy, Clone)]
pub struct _IP_ADAPTER_PREFIX_XP {
    pub __bindgen_anon_1: _IP_ADAPTER_PREFIX_XP__bindgen_ty_1,
    pub Next: *mut _IP_ADAPTER_PREFIX_XP,
    pub Address: SOCKET_ADDRESS,
    pub PrefixLength: ULONG,
}
#[repr(C)]
#[derive(Copy, Clone)]
pub union _IP_ADAPTER_PREFIX_XP__bindgen_ty_1 {
    pub Alignment: ULONGLONG,
    pub __bindgen_anon_1: _IP_ADAPTER_PREFIX_XP__bindgen_ty_1__bindgen_ty_1,
}
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct _IP_ADAPTER_PREFIX_XP__bindgen_ty_1__bindgen_ty_1 {
    pub Length: ULONG,
    pub Flags: DWORD,
}
#[allow(clippy::unnecessary_operation, clippy::identity_op)]
const _: () = {
    ["Size of _IP_ADAPTER_PREFIX_XP__bindgen_ty_1__bindgen_ty_1"]
        [::std::mem::size_of::<_IP_ADAPTER_PREFIX_XP__bindgen_ty_1__bindgen_ty_1>() - 8usize];
    ["Alignment of _IP_ADAPTER_PREFIX_XP__bindgen_ty_1__bindgen_ty_1"]
        [::std::mem::align_of::<_IP_ADAPTER_PREFIX_XP__bindgen_ty_1__bindgen_ty_1>() - 4usize];
    ["Offset of field: _IP_ADAPTER_PREFIX_XP__bindgen_ty_1__bindgen_ty_1::Length"][::std::mem::offset_of!(
        _IP_ADAPTER_PREFIX_XP__bindgen_ty_1__bindgen_ty_1,
        Length
    ) - 0usize];
    ["Offset of field: _IP_ADAPTER_PREFIX_XP__bindgen_ty_1__bindgen_ty_1::Flags"]
        [::std::mem::offset_of!(_IP_ADAPTER_PREFIX_XP__bindgen_ty_1__bindgen_ty_1, Flags) - 4usize];
};
#[allow(clippy::unnecessary_operation, clippy::identity_op)]
const _: () = {
    ["Size of _IP_ADAPTER_PREFIX_XP__bindgen_ty_1"]
        [::std::mem::size_of::<_IP_ADAPTER_PREFIX_XP__bindgen_ty_1>() - 8usize];
    ["Alignment of _IP_ADAPTER_PREFIX_XP__bindgen_ty_1"]
        [::std::mem::align_of::<_IP_ADAPTER_PREFIX_XP__bindgen_ty_1>() - 8usize];
    ["Offset of field: _IP_ADAPTER_PREFIX_XP__bindgen_ty_1::Alignment"]
        [::std::mem::offset_of!(_IP_ADAPTER_PREFIX_XP__bindgen_ty_1, Alignment) - 0usize];
};
#[allow(clippy::unnecessary_operation, clippy::identity_op)]
const _: () = {
    ["Size of _IP_ADAPTER_PREFIX_XP"][::std::mem::size_of::<_IP_ADAPTER_PREFIX_XP>() - 40usize];
    ["Alignment of _IP_ADAPTER_PREFIX_XP"]
        [::std::mem::align_of::<_IP_ADAPTER_PREFIX_XP>() - 8usize];
    ["Offset of field: _IP_ADAPTER_PREFIX_XP::Next"]
        [::std::mem::offset_of!(_IP_ADAPTER_PREFIX_XP, Next) - 8usize];
    ["Offset of field: _IP_ADAPTER_PREFIX_XP::Address"]
        [::std::mem::offset_of!(_IP_ADAPTER_PREFIX_XP, Address) - 16usize];
    ["Offset of field: _IP_ADAPTER_PREFIX_XP::PrefixLength"]
        [::std::mem::offset_of!(_IP_ADAPTER_PREFIX_XP, PrefixLength) - 32usize];
};
pub type PIP_ADAPTER_PREFIX_XP = *mut _IP_ADAPTER_PREFIX_XP;
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct _IP_ADAPTER_DNS_SUFFIX {
    pub Next: *mut _IP_ADAPTER_DNS_SUFFIX,
    pub String: [WCHAR; 256usize],
}
#[allow(clippy::unnecessary_operation, clippy::identity_op)]
const _: () = {
    ["Size of _IP_ADAPTER_DNS_SUFFIX"][::std::mem::size_of::<_IP_ADAPTER_DNS_SUFFIX>() - 520usize];
    ["Alignment of _IP_ADAPTER_DNS_SUFFIX"]
        [::std::mem::align_of::<_IP_ADAPTER_DNS_SUFFIX>() - 8usize];
    ["Offset of field: _IP_ADAPTER_DNS_SUFFIX::Next"]
        [::std::mem::offset_of!(_IP_ADAPTER_DNS_SUFFIX, Next) - 0usize];
    ["Offset of field: _IP_ADAPTER_DNS_SUFFIX::String"]
        [::std::mem::offset_of!(_IP_ADAPTER_DNS_SUFFIX, String) - 8usize];
};
pub type PIP_ADAPTER_DNS_SUFFIX = *mut _IP_ADAPTER_DNS_SUFFIX;
#[repr(C)]
#[derive(Copy, Clone)]
pub struct _IP_ADAPTER_ADDRESSES_LH {
    pub __bindgen_anon_1: _IP_ADAPTER_ADDRESSES_LH__bindgen_ty_1,
    pub Next: *mut _IP_ADAPTER_ADDRESSES_LH,
    pub AdapterName: PCHAR,
    pub FirstUnicastAddress: PIP_ADAPTER_UNICAST_ADDRESS_LH,
    pub FirstAnycastAddress: PIP_ADAPTER_ANYCAST_ADDRESS_XP,
    pub FirstMulticastAddress: PIP_ADAPTER_MULTICAST_ADDRESS_XP,
    pub FirstDnsServerAddress: PIP_ADAPTER_DNS_SERVER_ADDRESS_XP,
    pub DnsSuffix: PWCHAR,
    pub Description: PWCHAR,
    pub FriendlyName: PWCHAR,
    pub PhysicalAddress: [BYTE; 8usize],
    pub PhysicalAddressLength: ULONG,
    pub __bindgen_anon_2: _IP_ADAPTER_ADDRESSES_LH__bindgen_ty_2,
    pub Mtu: ULONG,
    pub IfType: IFTYPE,
    pub OperStatus: IF_OPER_STATUS,
    pub Ipv6IfIndex: IF_INDEX,
    pub ZoneIndices: [ULONG; 16usize],
    pub FirstPrefix: PIP_ADAPTER_PREFIX_XP,
    pub TransmitLinkSpeed: ULONG64,
    pub ReceiveLinkSpeed: ULONG64,
    pub FirstWinsServerAddress: PIP_ADAPTER_WINS_SERVER_ADDRESS_LH,
    pub FirstGatewayAddress: PIP_ADAPTER_GATEWAY_ADDRESS_LH,
    pub Ipv4Metric: ULONG,
    pub Ipv6Metric: ULONG,
    pub Luid: IF_LUID,
    pub Dhcpv4Server: SOCKET_ADDRESS,
    pub CompartmentId: NET_IF_COMPARTMENT_ID,
    pub NetworkGuid: NET_IF_NETWORK_GUID,
    pub ConnectionType: NET_IF_CONNECTION_TYPE,
    pub TunnelType: TUNNEL_TYPE,
    pub Dhcpv6Server: SOCKET_ADDRESS,
    pub Dhcpv6ClientDuid: [BYTE; 130usize],
    pub Dhcpv6ClientDuidLength: ULONG,
    pub Dhcpv6Iaid: ULONG,
    pub FirstDnsSuffix: PIP_ADAPTER_DNS_SUFFIX,
}
#[repr(C)]
#[derive(Copy, Clone)]
pub union _IP_ADAPTER_ADDRESSES_LH__bindgen_ty_1 {
    pub Alignment: ULONGLONG,
    pub __bindgen_anon_1: _IP_ADAPTER_ADDRESSES_LH__bindgen_ty_1__bindgen_ty_1,
}
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct _IP_ADAPTER_ADDRESSES_LH__bindgen_ty_1__bindgen_ty_1 {
    pub Length: ULONG,
    pub IfIndex: IF_INDEX,
}
#[allow(clippy::unnecessary_operation, clippy::identity_op)]
const _: () = {
    ["Size of _IP_ADAPTER_ADDRESSES_LH__bindgen_ty_1__bindgen_ty_1"]
        [::std::mem::size_of::<_IP_ADAPTER_ADDRESSES_LH__bindgen_ty_1__bindgen_ty_1>() - 8usize];
    ["Alignment of _IP_ADAPTER_ADDRESSES_LH__bindgen_ty_1__bindgen_ty_1"]
        [::std::mem::align_of::<_IP_ADAPTER_ADDRESSES_LH__bindgen_ty_1__bindgen_ty_1>() - 4usize];
    ["Offset of field: _IP_ADAPTER_ADDRESSES_LH__bindgen_ty_1__bindgen_ty_1::Length"][::std::mem::offset_of!(
        _IP_ADAPTER_ADDRESSES_LH__bindgen_ty_1__bindgen_ty_1,
        Length
    ) - 0usize];
    ["Offset of field: _IP_ADAPTER_ADDRESSES_LH__bindgen_ty_1__bindgen_ty_1::IfIndex"][::std::mem::offset_of!(
        _IP_ADAPTER_ADDRESSES_LH__bindgen_ty_1__bindgen_ty_1,
        IfIndex
    ) - 4usize];
};
#[allow(clippy::unnecessary_operation, clippy::identity_op)]
const _: () = {
    ["Size of _IP_ADAPTER_ADDRESSES_LH__bindgen_ty_1"]
        [::std::mem::size_of::<_IP_ADAPTER_ADDRESSES_LH__bindgen_ty_1>() - 8usize];
    ["Alignment of _IP_ADAPTER_ADDRESSES_LH__bindgen_ty_1"]
        [::std::mem::align_of::<_IP_ADAPTER_ADDRESSES_LH__bindgen_ty_1>() - 8usize];
    ["Offset of field: _IP_ADAPTER_ADDRESSES_LH__bindgen_ty_1::Alignment"]
        [::std::mem::offset_of!(_IP_ADAPTER_ADDRESSES_LH__bindgen_ty_1, Alignment) - 0usize];
};
#[repr(C)]
#[derive(Copy, Clone)]
pub union _IP_ADAPTER_ADDRESSES_LH__bindgen_ty_2 {
    pub Flags: ULONG,
    pub __bindgen_anon_1: _IP_ADAPTER_ADDRESSES_LH__bindgen_ty_2__bindgen_ty_1,
}
#[repr(C)]
#[repr(align(4))]
#[derive(Debug, Copy, Clone)]
pub struct _IP_ADAPTER_ADDRESSES_LH__bindgen_ty_2__bindgen_ty_1 {
    pub _bitfield_align_1: [u8; 0],
    pub _bitfield_1: __BindgenBitfieldUnit<[u8; 2usize]>,
    pub __bindgen_padding_0: u16,
}
#[allow(clippy::unnecessary_operation, clippy::identity_op)]
const _: () = {
    ["Size of _IP_ADAPTER_ADDRESSES_LH__bindgen_ty_2__bindgen_ty_1"]
        [::std::mem::size_of::<_IP_ADAPTER_ADDRESSES_LH__bindgen_ty_2__bindgen_ty_1>() - 4usize];
    ["Alignment of _IP_ADAPTER_ADDRESSES_LH__bindgen_ty_2__bindgen_ty_1"]
        [::std::mem::align_of::<_IP_ADAPTER_ADDRESSES_LH__bindgen_ty_2__bindgen_ty_1>() - 4usize];
};
impl _IP_ADAPTER_ADDRESSES_LH__bindgen_ty_2__bindgen_ty_1 {
    #[inline]
    pub fn DdnsEnabled(&self) -> ULONG {
        unsafe { ::std::mem::transmute(self._bitfield_1.get(0usize, 1u8) as u32) }
    }
    #[inline]
    pub fn set_DdnsEnabled(&mut self, val: ULONG) {
        unsafe {
            let val: u32 = ::std::mem::transmute(val);
            self._bitfield_1.set(0usize, 1u8, val as u64)
        }
    }
    #[inline]
    pub unsafe fn DdnsEnabled_raw(this: *const Self) -> ULONG {
        unsafe {
            ::std::mem::transmute(<__BindgenBitfieldUnit<[u8; 2usize]>>::raw_get(
                ::std::ptr::addr_of!((*this)._bitfield_1),
                0usize,
                1u8,
            ) as u32)
        }
    }
    #[inline]
    pub unsafe fn set_DdnsEnabled_raw(this: *mut Self, val: ULONG) {
        unsafe {
            let val: u32 = ::std::mem::transmute(val);
            <__BindgenBitfieldUnit<[u8; 2usize]>>::raw_set(
                ::std::ptr::addr_of_mut!((*this)._bitfield_1),
                0usize,
                1u8,
                val as u64,
            )
        }
    }
    #[inline]
    pub fn RegisterAdapterSuffix(&self) -> ULONG {
        unsafe { ::std::mem::transmute(self._bitfield_1.get(1usize, 1u8) as u32) }
    }
    #[inline]
    pub fn set_RegisterAdapterSuffix(&mut self, val: ULONG) {
        unsafe {
            let val: u32 = ::std::mem::transmute(val);
            self._bitfield_1.set(1usize, 1u8, val as u64)
        }
    }
    #[inline]
    pub unsafe fn RegisterAdapterSuffix_raw(this: *const Self) -> ULONG {
        unsafe {
            ::std::mem::transmute(<__BindgenBitfieldUnit<[u8; 2usize]>>::raw_get(
                ::std::ptr::addr_of!((*this)._bitfield_1),
                1usize,
                1u8,
            ) as u32)
        }
    }
    #[inline]
    pub unsafe fn set_RegisterAdapterSuffix_raw(this: *mut Self, val: ULONG) {
        unsafe {
            let val: u32 = ::std::mem::transmute(val);
            <__BindgenBitfieldUnit<[u8; 2usize]>>::raw_set(
                ::std::ptr::addr_of_mut!((*this)._bitfield_1),
                1usize,
                1u8,
                val as u64,
            )
        }
    }
    #[inline]
    pub fn Dhcpv4Enabled(&self) -> ULONG {
        unsafe { ::std::mem::transmute(self._bitfield_1.get(2usize, 1u8) as u32) }
    }
    #[inline]
    pub fn set_Dhcpv4Enabled(&mut self, val: ULONG) {
        unsafe {
            let val: u32 = ::std::mem::transmute(val);
            self._bitfield_1.set(2usize, 1u8, val as u64)
        }
    }
    #[inline]
    pub unsafe fn Dhcpv4Enabled_raw(this: *const Self) -> ULONG {
        unsafe {
            ::std::mem::transmute(<__BindgenBitfieldUnit<[u8; 2usize]>>::raw_get(
                ::std::ptr::addr_of!((*this)._bitfield_1),
                2usize,
                1u8,
            ) as u32)
        }
    }
    #[inline]
    pub unsafe fn set_Dhcpv4Enabled_raw(this: *mut Self, val: ULONG) {
        unsafe {
            let val: u32 = ::std::mem::transmute(val);
            <__BindgenBitfieldUnit<[u8; 2usize]>>::raw_set(
                ::std::ptr::addr_of_mut!((*this)._bitfield_1),
                2usize,
                1u8,
                val as u64,
            )
        }
    }
    #[inline]
    pub fn ReceiveOnly(&self) -> ULONG {
        unsafe { ::std::mem::transmute(self._bitfield_1.get(3usize, 1u8) as u32) }
    }
    #[inline]
    pub fn set_ReceiveOnly(&mut self, val: ULONG) {
        unsafe {
            let val: u32 = ::std::mem::transmute(val);
            self._bitfield_1.set(3usize, 1u8, val as u64)
        }
    }
    #[inline]
    pub unsafe fn ReceiveOnly_raw(this: *const Self) -> ULONG {
        unsafe {
            ::std::mem::transmute(<__BindgenBitfieldUnit<[u8; 2usize]>>::raw_get(
                ::std::ptr::addr_of!((*this)._bitfield_1),
                3usize,
                1u8,
            ) as u32)
        }
    }
    #[inline]
    pub unsafe fn set_ReceiveOnly_raw(this: *mut Self, val: ULONG) {
        unsafe {
            let val: u32 = ::std::mem::transmute(val);
            <__BindgenBitfieldUnit<[u8; 2usize]>>::raw_set(
                ::std::ptr::addr_of_mut!((*this)._bitfield_1),
                3usize,
                1u8,
                val as u64,
            )
        }
    }
    #[inline]
    pub fn NoMulticast(&self) -> ULONG {
        unsafe { ::std::mem::transmute(self._bitfield_1.get(4usize, 1u8) as u32) }
    }
    #[inline]
    pub fn set_NoMulticast(&mut self, val: ULONG) {
        unsafe {
            let val: u32 = ::std::mem::transmute(val);
            self._bitfield_1.set(4usize, 1u8, val as u64)
        }
    }
    #[inline]
    pub unsafe fn NoMulticast_raw(this: *const Self) -> ULONG {
        unsafe {
            ::std::mem::transmute(<__BindgenBitfieldUnit<[u8; 2usize]>>::raw_get(
                ::std::ptr::addr_of!((*this)._bitfield_1),
                4usize,
                1u8,
            ) as u32)
        }
    }
    #[inline]
    pub unsafe fn set_NoMulticast_raw(this: *mut Self, val: ULONG) {
        unsafe {
            let val: u32 = ::std::mem::transmute(val);
            <__BindgenBitfieldUnit<[u8; 2usize]>>::raw_set(
                ::std::ptr::addr_of_mut!((*this)._bitfield_1),
                4usize,
                1u8,
                val as u64,
            )
        }
    }
    #[inline]
    pub fn Ipv6OtherStatefulConfig(&self) -> ULONG {
        unsafe { ::std::mem::transmute(self._bitfield_1.get(5usize, 1u8) as u32) }
    }
    #[inline]
    pub fn set_Ipv6OtherStatefulConfig(&mut self, val: ULONG) {
        unsafe {
            let val: u32 = ::std::mem::transmute(val);
            self._bitfield_1.set(5usize, 1u8, val as u64)
        }
    }
    #[inline]
    pub unsafe fn Ipv6OtherStatefulConfig_raw(this: *const Self) -> ULONG {
        unsafe {
            ::std::mem::transmute(<__BindgenBitfieldUnit<[u8; 2usize]>>::raw_get(
                ::std::ptr::addr_of!((*this)._bitfield_1),
                5usize,
                1u8,
            ) as u32)
        }
    }
    #[inline]
    pub unsafe fn set_Ipv6OtherStatefulConfig_raw(this: *mut Self, val: ULONG) {
        unsafe {
            let val: u32 = ::std::mem::transmute(val);
            <__BindgenBitfieldUnit<[u8; 2usize]>>::raw_set(
                ::std::ptr::addr_of_mut!((*this)._bitfield_1),
                5usize,
                1u8,
                val as u64,
            )
        }
    }
    #[inline]
    pub fn NetbiosOverTcpipEnabled(&self) -> ULONG {
        unsafe { ::std::mem::transmute(self._bitfield_1.get(6usize, 1u8) as u32) }
    }
    #[inline]
    pub fn set_NetbiosOverTcpipEnabled(&mut self, val: ULONG) {
        unsafe {
            let val: u32 = ::std::mem::transmute(val);
            self._bitfield_1.set(6usize, 1u8, val as u64)
        }
    }
    #[inline]
    pub unsafe fn NetbiosOverTcpipEnabled_raw(this: *const Self) -> ULONG {
        unsafe {
            ::std::mem::transmute(<__BindgenBitfieldUnit<[u8; 2usize]>>::raw_get(
                ::std::ptr::addr_of!((*this)._bitfield_1),
                6usize,
                1u8,
            ) as u32)
        }
    }
    #[inline]
    pub unsafe fn set_NetbiosOverTcpipEnabled_raw(this: *mut Self, val: ULONG) {
        unsafe {
            let val: u32 = ::std::mem::transmute(val);
            <__BindgenBitfieldUnit<[u8; 2usize]>>::raw_set(
                ::std::ptr::addr_of_mut!((*this)._bitfield_1),
                6usize,
                1u8,
                val as u64,
            )
        }
    }
    #[inline]
    pub fn Ipv4Enabled(&self) -> ULONG {
        unsafe { ::std::mem::transmute(self._bitfield_1.get(7usize, 1u8) as u32) }
    }
    #[inline]
    pub fn set_Ipv4Enabled(&mut self, val: ULONG) {
        unsafe {
            let val: u32 = ::std::mem::transmute(val);
            self._bitfield_1.set(7usize, 1u8, val as u64)
        }
    }
    #[inline]
    pub unsafe fn Ipv4Enabled_raw(this: *const Self) -> ULONG {
        unsafe {
            ::std::mem::transmute(<__BindgenBitfieldUnit<[u8; 2usize]>>::raw_get(
                ::std::ptr::addr_of!((*this)._bitfield_1),
                7usize,
                1u8,
            ) as u32)
        }
    }
    #[inline]
    pub unsafe fn set_Ipv4Enabled_raw(this: *mut Self, val: ULONG) {
        unsafe {
            let val: u32 = ::std::mem::transmute(val);
            <__BindgenBitfieldUnit<[u8; 2usize]>>::raw_set(
                ::std::ptr::addr_of_mut!((*this)._bitfield_1),
                7usize,
                1u8,
                val as u64,
            )
        }
    }
    #[inline]
    pub fn Ipv6Enabled(&self) -> ULONG {
        unsafe { ::std::mem::transmute(self._bitfield_1.get(8usize, 1u8) as u32) }
    }
    #[inline]
    pub fn set_Ipv6Enabled(&mut self, val: ULONG) {
        unsafe {
            let val: u32 = ::std::mem::transmute(val);
            self._bitfield_1.set(8usize, 1u8, val as u64)
        }
    }
    #[inline]
    pub unsafe fn Ipv6Enabled_raw(this: *const Self) -> ULONG {
        unsafe {
            ::std::mem::transmute(<__BindgenBitfieldUnit<[u8; 2usize]>>::raw_get(
                ::std::ptr::addr_of!((*this)._bitfield_1),
                8usize,
                1u8,
            ) as u32)
        }
    }
    #[inline]
    pub unsafe fn set_Ipv6Enabled_raw(this: *mut Self, val: ULONG) {
        unsafe {
            let val: u32 = ::std::mem::transmute(val);
            <__BindgenBitfieldUnit<[u8; 2usize]>>::raw_set(
                ::std::ptr::addr_of_mut!((*this)._bitfield_1),
                8usize,
                1u8,
                val as u64,
            )
        }
    }
    #[inline]
    pub fn Ipv6ManagedAddressConfigurationSupported(&self) -> ULONG {
        unsafe { ::std::mem::transmute(self._bitfield_1.get(9usize, 1u8) as u32) }
    }
    #[inline]
    pub fn set_Ipv6ManagedAddressConfigurationSupported(&mut self, val: ULONG) {
        unsafe {
            let val: u32 = ::std::mem::transmute(val);
            self._bitfield_1.set(9usize, 1u8, val as u64)
        }
    }
    #[inline]
    pub unsafe fn Ipv6ManagedAddressConfigurationSupported_raw(this: *const Self) -> ULONG {
        unsafe {
            ::std::mem::transmute(<__BindgenBitfieldUnit<[u8; 2usize]>>::raw_get(
                ::std::ptr::addr_of!((*this)._bitfield_1),
                9usize,
                1u8,
            ) as u32)
        }
    }
    #[inline]
    pub unsafe fn set_Ipv6ManagedAddressConfigurationSupported_raw(this: *mut Self, val: ULONG) {
        unsafe {
            let val: u32 = ::std::mem::transmute(val);
            <__BindgenBitfieldUnit<[u8; 2usize]>>::raw_set(
                ::std::ptr::addr_of_mut!((*this)._bitfield_1),
                9usize,
                1u8,
                val as u64,
            )
        }
    }
    #[inline]
    pub fn new_bitfield_1(
        DdnsEnabled: ULONG,
        RegisterAdapterSuffix: ULONG,
        Dhcpv4Enabled: ULONG,
        ReceiveOnly: ULONG,
        NoMulticast: ULONG,
        Ipv6OtherStatefulConfig: ULONG,
        NetbiosOverTcpipEnabled: ULONG,
        Ipv4Enabled: ULONG,
        Ipv6Enabled: ULONG,
        Ipv6ManagedAddressConfigurationSupported: ULONG,
    ) -> __BindgenBitfieldUnit<[u8; 2usize]> {
        let mut __bindgen_bitfield_unit: __BindgenBitfieldUnit<[u8; 2usize]> = Default::default();
        __bindgen_bitfield_unit.set(0usize, 1u8, {
            let DdnsEnabled: u32 = unsafe { ::std::mem::transmute(DdnsEnabled) };
            DdnsEnabled as u64
        });
        __bindgen_bitfield_unit.set(1usize, 1u8, {
            let RegisterAdapterSuffix: u32 =
                unsafe { ::std::mem::transmute(RegisterAdapterSuffix) };
            RegisterAdapterSuffix as u64
        });
        __bindgen_bitfield_unit.set(2usize, 1u8, {
            let Dhcpv4Enabled: u32 = unsafe { ::std::mem::transmute(Dhcpv4Enabled) };
            Dhcpv4Enabled as u64
        });
        __bindgen_bitfield_unit.set(3usize, 1u8, {
            let ReceiveOnly: u32 = unsafe { ::std::mem::transmute(ReceiveOnly) };
            ReceiveOnly as u64
        });
        __bindgen_bitfield_unit.set(4usize, 1u8, {
            let NoMulticast: u32 = unsafe { ::std::mem::transmute(NoMulticast) };
            NoMulticast as u64
        });
        __bindgen_bitfield_unit.set(5usize, 1u8, {
            let Ipv6OtherStatefulConfig: u32 =
                unsafe { ::std::mem::transmute(Ipv6OtherStatefulConfig) };
            Ipv6OtherStatefulConfig as u64
        });
        __bindgen_bitfield_unit.set(6usize, 1u8, {
            let NetbiosOverTcpipEnabled: u32 =
                unsafe { ::std::mem::transmute(NetbiosOverTcpipEnabled) };
            NetbiosOverTcpipEnabled as u64
        });
        __bindgen_bitfield_unit.set(7usize, 1u8, {
            let Ipv4Enabled: u32 = unsafe { ::std::mem::transmute(Ipv4Enabled) };
            Ipv4Enabled as u64
        });
        __bindgen_bitfield_unit.set(8usize, 1u8, {
            let Ipv6Enabled: u32 = unsafe { ::std::mem::transmute(Ipv6Enabled) };
            Ipv6Enabled as u64
        });
        __bindgen_bitfield_unit.set(9usize, 1u8, {
            let Ipv6ManagedAddressConfigurationSupported: u32 =
                unsafe { ::std::mem::transmute(Ipv6ManagedAddressConfigurationSupported) };
            Ipv6ManagedAddressConfigurationSupported as u64
        });
        __bindgen_bitfield_unit
    }
}
#[allow(clippy::unnecessary_operation, clippy::identity_op)]
const _: () = {
    ["Size of _IP_ADAPTER_ADDRESSES_LH__bindgen_ty_2"]
        [::std::mem::size_of::<_IP_ADAPTER_ADDRESSES_LH__bindgen_ty_2>() - 4usize];
    ["Alignment of _IP_ADAPTER_ADDRESSES_LH__bindgen_ty_2"]
        [::std::mem::align_of::<_IP_ADAPTER_ADDRESSES_LH__bindgen_ty_2>() - 4usize];
    ["Offset of field: _IP_ADAPTER_ADDRESSES_LH__bindgen_ty_2::Flags"]
        [::std::mem::offset_of!(_IP_ADAPTER_ADDRESSES_LH__bindgen_ty_2, Flags) - 0usize];
};
#[allow(clippy::unnecessary_operation, clippy::identity_op)]
const _: () = {
    ["Size of _IP_ADAPTER_ADDRESSES_LH"]
        [::std::mem::size_of::<_IP_ADAPTER_ADDRESSES_LH>() - 448usize];
    ["Alignment of _IP_ADAPTER_ADDRESSES_LH"]
        [::std::mem::align_of::<_IP_ADAPTER_ADDRESSES_LH>() - 8usize];
    ["Offset of field: _IP_ADAPTER_ADDRESSES_LH::Next"]
        [::std::mem::offset_of!(_IP_ADAPTER_ADDRESSES_LH, Next) - 8usize];
    ["Offset of field: _IP_ADAPTER_ADDRESSES_LH::AdapterName"]
        [::std::mem::offset_of!(_IP_ADAPTER_ADDRESSES_LH, AdapterName) - 16usize];
    ["Offset of field: _IP_ADAPTER_ADDRESSES_LH::FirstUnicastAddress"]
        [::std::mem::offset_of!(_IP_ADAPTER_ADDRESSES_LH, FirstUnicastAddress) - 24usize];
    ["Offset of field: _IP_ADAPTER_ADDRESSES_LH::FirstAnycastAddress"]
        [::std::mem::offset_of!(_IP_ADAPTER_ADDRESSES_LH, FirstAnycastAddress) - 32usize];
    ["Offset of field: _IP_ADAPTER_ADDRESSES_LH::FirstMulticastAddress"]
        [::std::mem::offset_of!(_IP_ADAPTER_ADDRESSES_LH, FirstMulticastAddress) - 40usize];
    ["Offset of field: _IP_ADAPTER_ADDRESSES_LH::FirstDnsServerAddress"]
        [::std::mem::offset_of!(_IP_ADAPTER_ADDRESSES_LH, FirstDnsServerAddress) - 48usize];
    ["Offset of field: _IP_ADAPTER_ADDRESSES_LH::DnsSuffix"]
        [::std::mem::offset_of!(_IP_ADAPTER_ADDRESSES_LH, DnsSuffix) - 56usize];
    ["Offset of field: _IP_ADAPTER_ADDRESSES_LH::Description"]
        [::std::mem::offset_of!(_IP_ADAPTER_ADDRESSES_LH, Description) - 64usize];
    ["Offset of field: _IP_ADAPTER_ADDRESSES_LH::FriendlyName"]
        [::std::mem::offset_of!(_IP_ADAPTER_ADDRESSES_LH, FriendlyName) - 72usize];
    ["Offset of field: _IP_ADAPTER_ADDRESSES_LH::PhysicalAddress"]
        [::std::mem::offset_of!(_IP_ADAPTER_ADDRESSES_LH, PhysicalAddress) - 80usize];
    ["Offset of field: _IP_ADAPTER_ADDRESSES_LH::PhysicalAddressLength"]
        [::std::mem::offset_of!(_IP_ADAPTER_ADDRESSES_LH, PhysicalAddressLength) - 88usize];
    ["Offset of field: _IP_ADAPTER_ADDRESSES_LH::Mtu"]
        [::std::mem::offset_of!(_IP_ADAPTER_ADDRESSES_LH, Mtu) - 96usize];
    ["Offset of field: _IP_ADAPTER_ADDRESSES_LH::IfType"]
        [::std::mem::offset_of!(_IP_ADAPTER_ADDRESSES_LH, IfType) - 100usize];
    ["Offset of field: _IP_ADAPTER_ADDRESSES_LH::OperStatus"]
        [::std::mem::offset_of!(_IP_ADAPTER_ADDRESSES_LH, OperStatus) - 104usize];
    ["Offset of field: _IP_ADAPTER_ADDRESSES_LH::Ipv6IfIndex"]
        [::std::mem::offset_of!(_IP_ADAPTER_ADDRESSES_LH, Ipv6IfIndex) - 108usize];
    ["Offset of field: _IP_ADAPTER_ADDRESSES_LH::ZoneIndices"]
        [::std::mem::offset_of!(_IP_ADAPTER_ADDRESSES_LH, ZoneIndices) - 112usize];
    ["Offset of field: _IP_ADAPTER_ADDRESSES_LH::FirstPrefix"]
        [::std::mem::offset_of!(_IP_ADAPTER_ADDRESSES_LH, FirstPrefix) - 176usize];
    ["Offset of field: _IP_ADAPTER_ADDRESSES_LH::TransmitLinkSpeed"]
        [::std::mem::offset_of!(_IP_ADAPTER_ADDRESSES_LH, TransmitLinkSpeed) - 184usize];
    ["Offset of field: _IP_ADAPTER_ADDRESSES_LH::ReceiveLinkSpeed"]
        [::std::mem::offset_of!(_IP_ADAPTER_ADDRESSES_LH, ReceiveLinkSpeed) - 192usize];
    ["Offset of field: _IP_ADAPTER_ADDRESSES_LH::FirstWinsServerAddress"]
        [::std::mem::offset_of!(_IP_ADAPTER_ADDRESSES_LH, FirstWinsServerAddress) - 200usize];
    ["Offset of field: _IP_ADAPTER_ADDRESSES_LH::FirstGatewayAddress"]
        [::std::mem::offset_of!(_IP_ADAPTER_ADDRESSES_LH, FirstGatewayAddress) - 208usize];
    ["Offset of field: _IP_ADAPTER_ADDRESSES_LH::Ipv4Metric"]
        [::std::mem::offset_of!(_IP_ADAPTER_ADDRESSES_LH, Ipv4Metric) - 216usize];
    ["Offset of field: _IP_ADAPTER_ADDRESSES_LH::Ipv6Metric"]
        [::std::mem::offset_of!(_IP_ADAPTER_ADDRESSES_LH, Ipv6Metric) - 220usize];
    ["Offset of field: _IP_ADAPTER_ADDRESSES_LH::Luid"]
        [::std::mem::offset_of!(_IP_ADAPTER_ADDRESSES_LH, Luid) - 224usize];
    ["Offset of field: _IP_ADAPTER_ADDRESSES_LH::Dhcpv4Server"]
        [::std::mem::offset_of!(_IP_ADAPTER_ADDRESSES_LH, Dhcpv4Server) - 232usize];
    ["Offset of field: _IP_ADAPTER_ADDRESSES_LH::CompartmentId"]
        [::std::mem::offset_of!(_IP_ADAPTER_ADDRESSES_LH, CompartmentId) - 248usize];
    ["Offset of field: _IP_ADAPTER_ADDRESSES_LH::NetworkGuid"]
        [::std::mem::offset_of!(_IP_ADAPTER_ADDRESSES_LH, NetworkGuid) - 252usize];
    ["Offset of field: _IP_ADAPTER_ADDRESSES_LH::ConnectionType"]
        [::std::mem::offset_of!(_IP_ADAPTER_ADDRESSES_LH, ConnectionType) - 268usize];
    ["Offset of field: _IP_ADAPTER_ADDRESSES_LH::TunnelType"]
        [::std::mem::offset_of!(_IP_ADAPTER_ADDRESSES_LH, TunnelType) - 272usize];
    ["Offset of field: _IP_ADAPTER_ADDRESSES_LH::Dhcpv6Server"]
        [::std::mem::offset_of!(_IP_ADAPTER_ADDRESSES_LH, Dhcpv6Server) - 280usize];
    ["Offset of field: _IP_ADAPTER_ADDRESSES_LH::Dhcpv6ClientDuid"]
        [::std::mem::offset_of!(_IP_ADAPTER_ADDRESSES_LH, Dhcpv6ClientDuid) - 296usize];
    ["Offset of field: _IP_ADAPTER_ADDRESSES_LH::Dhcpv6ClientDuidLength"]
        [::std::mem::offset_of!(_IP_ADAPTER_ADDRESSES_LH, Dhcpv6ClientDuidLength) - 428usize];
    ["Offset of field: _IP_ADAPTER_ADDRESSES_LH::Dhcpv6Iaid"]
        [::std::mem::offset_of!(_IP_ADAPTER_ADDRESSES_LH, Dhcpv6Iaid) - 432usize];
    ["Offset of field: _IP_ADAPTER_ADDRESSES_LH::FirstDnsSuffix"]
        [::std::mem::offset_of!(_IP_ADAPTER_ADDRESSES_LH, FirstDnsSuffix) - 440usize];
};
pub type IP_ADAPTER_ADDRESSES_LH = _IP_ADAPTER_ADDRESSES_LH;
pub type PIP_ADAPTER_ADDRESSES = *mut IP_ADAPTER_ADDRESSES_LH;
unsafe extern "C" {
    pub fn GetAdaptersAddresses(
        Family: ULONG,
        Flags: ULONG,
        Reserved: PVOID,
        AdapterAddresses: PIP_ADAPTER_ADDRESSES,
        SizePointer: PULONG,
    ) -> ULONG;
}