equal
deleted
inserted
replaced
|
1 #ifndef _W32API_H |
|
2 #define _W32API_H |
|
3 #define _W32API_H_ |
|
4 #if __GNUC__ >=3 |
|
5 #pragma GCC system_header |
|
6 #endif |
|
7 |
|
8 #define __W32API_VERSION 3.11 |
|
9 #define __W32API_MAJOR_VERSION 3 |
|
10 #define __W32API_MINOR_VERSION 11 |
|
11 |
|
12 /* The following defines are for documentation purposes. The following defines |
|
13 * identify the versions of Windows and Internet Explorer. They are not to be |
|
14 * used in the w32api library but may be used by a user to set the _WIN32_WINNT |
|
15 * or _WIN32_WINDOWS and the WINVER values to their minimum level of support. |
|
16 * |
|
17 * Similarly the user can use the Internet Explorer values to set the _WIN32_IE |
|
18 * value to their minimum level of support. |
|
19 */ |
|
20 |
|
21 /* Use these values to set _WIN32_WINDOWS and WINVER to your minimum support |
|
22 * level */ |
|
23 #define Windows95 0x0400 |
|
24 #define Windows98 0x0410 |
|
25 #define WindowsME 0x0500 |
|
26 |
|
27 /* Use these values to set _WIN32_WINNT and WINVER to your mimimum support |
|
28 * level. */ |
|
29 #define WindowsNT4 0x0400 |
|
30 #define Windows2000 0x0500 |
|
31 #define WindowsXP 0x0501 |
|
32 #define Windows2003 0x0502 |
|
33 #define WindowsVista 0x0600 |
|
34 |
|
35 /* Use these values to set _WIN32_IE to your minimum support level */ |
|
36 #define IE3 0x0300 |
|
37 #define IE301 0x0300 |
|
38 #define IE302 0x0300 |
|
39 #define IE4 0x0400 |
|
40 #define IE401 0x0401 |
|
41 #define IE5 0x0500 |
|
42 #define IE5a 0x0500 |
|
43 #define IE5b 0x0500 |
|
44 #define IE501 0x0501 |
|
45 #define IE55 0x0501 |
|
46 #define IE56 0x0560 |
|
47 #define IE6 0x0600 |
|
48 #define IE601 0x0601 |
|
49 #define IE602 0x0603 |
|
50 #define IE7 0x0700 |
|
51 |
|
52 #endif /* ndef _W32API_H */ |