msxml3/tests: Add test saving XML with non-english characters.
[wine.git] / include / windot11.h
blob39effeb93ec2d32f36dae16778e8e8c2fa6b3bfe
1 /*
2 * Copyright (C) 2021 Alex Henrie
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 #ifndef _WINDOT11_H
20 #define _WINDOT11_H
22 typedef enum _DOT11_PHY_TYPE
24 dot11_phy_type_unknown = 0x00,
25 dot11_phy_type_any = 0x00,
26 dot11_phy_type_fhss = 0x01,
27 dot11_phy_type_dsss = 0x02,
28 dot11_phy_type_irbaseband = 0x03,
29 dot11_phy_type_ofdm = 0x04,
30 dot11_phy_type_hrdsss = 0x05,
31 dot11_phy_type_erp = 0x06,
32 dot11_phy_type_ht = 0x07,
33 dot11_phy_type_vht = 0x08,
34 dot11_phy_type_IHV_start = 0x80000000,
35 dot11_phy_type_IHV_end = 0xFFFFFFFF
36 } DOT11_PHY_TYPE, *PDOT11_PHY_TYPE;
38 typedef UCHAR DOT11_MAC_ADDRESS[6];
39 typedef DOT11_MAC_ADDRESS *PDOT11_MAC_ADDRESS;
41 #endif /* _WINDOT11_H */