Show
Ignore:
Timestamp:
10/17/08 21:40:08 (3 years ago)
Author:
smjg
Message:

commctrl.d updated to 3.12

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/win32/w32api.d

    r205 r310  
    44*                       Windows API header module                       * 
    55*                                                                       * 
    6 *             Translated from MinGW API for MS-Windows 3.10             * 
     6*             Translated from MinGW API for MS-Windows 3.12             * 
    77*                           by Stewart Gordon                           * 
    88*                                                                       * 
     
    1111module win32.w32api; 
    1212 
    13 const __W32API_VERSION = 3.10
     13const __W32API_VERSION = 3.12
    1414const __W32API_MAJOR_VERSION = 3; 
    15 const __W32API_MINOR_VERSION = 10
     15const __W32API_MINOR_VERSION = 12
    1616 
    1717/*  These version identifiers are used to specify the minimum version of 
     
    7272const bool _WIN32_WINNT_ONLY = _WIN32_WINDOWS == uint.max; 
    7373 
    74 version (IE6) { 
     74version (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) { 
    7581    const uint _WIN32_IE = 0x600; 
    7682} else version (IE56) {