Changeset 310 for trunk/win32/w32api.d
- Timestamp:
- 10/17/08 21:40:08 (3 years ago)
- Files:
-
- trunk/win32/w32api.d (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/win32/w32api.d
r205 r310 4 4 * Windows API header module * 5 5 * * 6 * Translated from MinGW API for MS-Windows 3.1 0*6 * Translated from MinGW API for MS-Windows 3.12 * 7 7 * by Stewart Gordon * 8 8 * * … … 11 11 module win32.w32api; 12 12 13 const __W32API_VERSION = 3.1 0;13 const __W32API_VERSION = 3.12; 14 14 const __W32API_MAJOR_VERSION = 3; 15 const __W32API_MINOR_VERSION = 1 0;15 const __W32API_MINOR_VERSION = 12; 16 16 17 17 /* These version identifiers are used to specify the minimum version of … … 72 72 const bool _WIN32_WINNT_ONLY = _WIN32_WINDOWS == uint.max; 73 73 74 version (IE6) { 74 version (IE7) { 75 const uint _WIN32_IE = 0x700; 76 } else version (IE602) { 77 const uint _WIN32_IE = 0x603; 78 } else version (IE601) { 79 const uint _WIN32_IE = 0x601; 80 } else version (IE6) { 75 81 const uint _WIN32_IE = 0x600; 76 82 } else version (IE56) {
