OSDN Git Service

Correct mistyped __MINGW_NOTHROW macro.
[mingw/mingw-org-wsl.git] / include / w32api.h
1 /**
2  * @file w32api.h
3  * Copyright 2012, 2013 MinGW.org project
4  *
5  * Permission is hereby granted, free of charge, to any person obtaining a
6  * copy of this software and associated documentation files (the "Software"),
7  * to deal in the Software without restriction, including without limitation
8  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9  * and/or sell copies of the Software, and to permit persons to whom the
10  * Software is furnished to do so, subject to the following conditions:
11  * 
12  * The above copyright notice and this permission notice (including the next
13  * paragraph) shall be included in all copies or substantial portions of the
14  * Software.
15  * 
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22  * DEALINGS IN THE SOFTWARE.
23  */
24 #ifndef _W32API_H
25 #define _W32API_H
26 #pragma GCC system_header
27 #warning WARNING - The w32api.h header file is deprecated and will be removed.
28
29 #define __W32API_VERSION 3.17
30 #define __W32API_MAJOR_VERSION 3
31 #define __W32API_MINOR_VERSION 17
32
33 /* The following defines are for documentation purposes.  The following defines
34  * identify the versions of Windows and Internet Explorer.  They are not to be
35  * used in the w32api library but may be used by a user to set the _WIN32_WINNT
36  * or _WIN32_WINDOWS and the WINVER values to their minimum level of support.
37  *
38  * Similarly the user can use the Internet Explorer values to set the _WIN32_IE
39  * value to their minimum level of support.
40  */
41
42 /* Use these values to set _WIN32_WINDOWS and WINVER to your minimum support 
43  * level */
44 #define Windows95    0x0400
45 #define Windows98    0x0410
46 #define WindowsME    0x0500
47
48 /* Use these values to set _WIN32_WINNT and WINVER to your mimimum support 
49  * level. */
50 #define WindowsNT4   0x0400
51 #define Windows2000  0x0500
52 #define WindowsXP    0x0501
53 #define Windows2003  0x0502
54 #define WindowsVista 0x0600
55
56 /* Use these values to set _WIN32_IE to your minimum support level */
57 #define IE3     0x0300
58 #define IE301   0x0300
59 #define IE302   0x0300
60 #define IE4     0x0400
61 #define IE401   0x0401
62 #define IE5     0x0500
63 #define IE5a    0x0500
64 #define IE5b    0x0500
65 #define IE501   0x0501
66 #define IE55    0x0501
67 #define IE56    0x0560
68 #define IE6     0x0600
69 #define IE601   0x0601
70 #define IE602   0x0603
71 #define IE7     0x0700
72
73 #endif /* ndef _W32API_H */